home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / dsp / dspkgctr.z / dspkgctr / gcc / reload1.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  116KB  |  3,514 lines

  1. /* Reload pseudo regs into hard regs for insns that require hard regs.
  2.    Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4.    $Id: reload1.c,v 1.23 91/10/23 16:53:10 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. #include "config.h"
  24. #include "rtl.h"
  25. #if ! defined( _INTELC32_ )
  26. #include "insn-config.h"
  27. #else
  28. #include "iconfig.h"
  29. #endif
  30. #include "flags.h"
  31. #include "regs.h"
  32. #if ! defined( _INTELC32_ )
  33. #include "hard-reg-set.h"
  34. #else
  35. #include "hardrset.h"
  36. #endif
  37. #include "reload.h"
  38. #include "recog.h"
  39. #if ! defined( _INTELC32_ )
  40. #include "basic-block.h"
  41. #else
  42. #include "bblock.h"
  43. #endif
  44. #include <stdio.h>
  45.  
  46. #if ! defined( _MSDOS )
  47. #define min(A,B) ((A) < (B) ? (A) : (B))
  48. #define max(A,B) ((A) > (B) ? (A) : (B))
  49. #endif
  50.  
  51. /* This file contains the reload pass of the compiler, which is
  52.    run after register allocation has been done.  It checks that
  53.    each insn is valid (operands required to be in registers really
  54.    are in registers of the proper class) and fixes up invalid ones
  55.    by copying values temporarily into registers for the insns
  56.    that need them.
  57.  
  58.    The results of register allocation are described by the vector
  59.    reg_renumber; the insns still contain pseudo regs, but reg_renumber
  60.    can be used to find which hard reg, if any, a pseudo reg is in.
  61.  
  62.    The technique we always use is to free up a few hard regs that are
  63.    called ``reload regs'', and for each place where a pseudo reg
  64.    must be in a hard reg, copy it temporarily into one of the reload regs.
  65.  
  66.    All the pseudos that were formerly allocated to the hard regs that
  67.    are now in use as reload regs must be ``spilled''.  This means
  68.    that they go to other hard regs, or to stack slots if no other
  69.    available hard regs can be found.  Spilling can invalidate more
  70.    insns, requiring additional need for reloads, so we must keep checking
  71.    until the process stabilizes.
  72.  
  73.    For machines with different classes of registers, we must keep track
  74.    of the register class needed for each reload, and make sure that
  75.    we allocate enough reload registers of each class.
  76.  
  77.    The file reload.c contains the code that checks one insn for
  78.    validity and reports the reloads that it needs.  This file
  79.    is in charge of scanning the entire rtl code, accumulating the
  80.    reload needs, spilling, assigning reload registers to use for
  81.    fixing up each insn, and generating the new insns to copy values
  82.    into the reload registers.  */
  83.  
  84. /* During reload_as_needed, element N contains a REG rtx for the hard reg
  85.    into which pseudo reg N has been reloaded (perhaps for a previous insn). */
  86. static rtx *reg_last_reload_reg;
  87.  
  88. /* Elt N nonzero if reg_last_reload_reg[N] has been set in this insn
  89.    for an output reload that stores into reg N.  */
  90. static char *reg_has_output_reload;
  91.  
  92. /* Elt N nonzero if hard reg N is a reload-register for an output reload
  93.    in the current insn.  */
  94. static char reg_is_output_reload[FIRST_PSEUDO_REGISTER];
  95.  
  96. /* Element N is the constant value to which pseudo reg N is equivalent,
  97.    or zero if pseudo reg N is not equivalent to a constant.
  98.    find_reloads looks at this in order to replace pseudo reg N
  99.    with the constant it stands for.  */
  100. rtx *reg_equiv_constant;
  101.  
  102. /* Element N is the address of stack slot to which pseudo reg N is equivalent.
  103.    This is used when the address is not valid as a memory address
  104.    (because its displacement is too big for the machine.)  */
  105. rtx *reg_equiv_address;
  106.  
  107. /* Element N is the memory slot to which pseudo reg N is equivalent,
  108.    or zero if pseudo reg N is not equivalent to a memory slot.  */
  109. rtx *reg_equiv_mem;
  110.  
  111. /* Widest width in which each pseudo reg is referred to (via subreg).  */
  112. static int *reg_max_ref_width;
  113.  
  114. /* Element N is the insn that initialized reg N from its equivalent
  115.    constant or memory slot.  */
  116. static rtx *reg_equiv_init;
  117.  
  118. /* During reload_as_needed, element N contains the last pseudo regno
  119.    reloaded into the Nth reload register.  This vector is in parallel
  120.    with spill_regs.  */
  121. static int reg_reloaded_contents[FIRST_PSEUDO_REGISTER];
  122.  
  123. /* Number of spill-regs so far; number of valid elements of spill_regs.  */
  124. static int n_spills;
  125.  
  126. /* In parallel with spill_regs, contains REG rtx's for those regs.
  127.    Holds the last rtx used for any given reg, or 0 if it has never
  128.    been used for spilling yet.  This rtx is reused, provided it has
  129.    the proper mode.  */
  130. static rtx spill_reg_rtx[FIRST_PSEUDO_REGISTER];
  131.  
  132. /* In parallel with spill_regs, contains nonzero for a spill reg
  133.    that was stored after the last time it was used.
  134.    The precise value is the insn generated to do the store.  */
  135. static rtx spill_reg_store[FIRST_PSEUDO_REGISTER];
  136.  
  137. /* This table is the inverse mapping of spill_regs:
  138.    indexed by hard reg number,
  139.    it contains the position of that reg in spill_regs,
  140.    or -1 for something that is not in spill_regs.  */
  141. static short spill_reg_order[FIRST_PSEUDO_REGISTER];
  142.  
  143. /* This table contains 1 for a register that may not be used
  144.    for retrying global allocation, or -1 for a register that may be used.
  145.    The registers that may not be used include all spill registers
  146.    and the frame pointer (if we are using one).  */
  147. static short forbidden_regs[FIRST_PSEUDO_REGISTER];
  148.  
  149. /* Describes order of use of registers for reloading
  150.    of spilled pseudo-registers.  `spills' is the number of
  151.    elements that are actually valid; new ones are added at the end.  */
  152. static char spill_regs[FIRST_PSEUDO_REGISTER];
  153.  
  154. /* Describes order of preference for putting regs into spill_regs.
  155.    Contains the numbers of all the hard regs, in order most preferred first.
  156.    This order is different for each function.
  157.    It is set up by order_regs_for_reload.
  158.    Empty elements at the end contain -1.  */
  159. static short potential_reload_regs[FIRST_PSEUDO_REGISTER];
  160.  
  161. /* 1 for a hard register that appears explicitly in the rtl
  162.    (for example, function value registers, special registers
  163.    used by insns, structure value pointer registers).  */
  164. static char regs_explicitly_used[FIRST_PSEUDO_REGISTER];
  165.  
  166. /* For each register, 1 if it was counted against the need for
  167.    groups.  0 means it can count against max_nongroup instead.  */
  168. static char counted_for_groups[FIRST_PSEUDO_REGISTER];
  169.  
  170. /* For each register, 1 if it was counted against the need for
  171.    non-groups.  0 means it can become part of a new group.
  172.    During choose_reload_regs, 1 here means don't use this reg
  173.    as part of a group, even if it seems to be otherwise ok.  */
  174. static char counted_for_nongroups[FIRST_PSEUDO_REGISTER];
  175.  
  176. /* Nonzero if spilling (REG n) does not require reloading it into
  177.    a register in order to do (MEM (REG n)).  */
  178.  
  179. static char spill_indirect_ok;
  180.  
  181. /* Nonzero if an address (plus (reg frame_pointer) (reg ...)) is valid.  */
  182.  
  183. char double_reg_address_ok;
  184.  
  185. /* Record the stack slot for each spilled hard register.  */
  186.  
  187. static rtx spill_stack_slot[FIRST_PSEUDO_REGISTER];
  188.  
  189. /* Width allocated so far for that stack slot.  */
  190.  
  191. static int spill_stack_slot_width[FIRST_PSEUDO_REGISTER];
  192.  
  193. /* Indexed by basic block number, nonzero if there is any need
  194.    for a spill register in that basic block.
  195.    The pointer is 0 if we did stupid allocation and don't know
  196.    the structure of basic blocks.  */
  197.  
  198. char *basic_block_needs;
  199.  
  200. /* First uid used by insns created by reload in this function.
  201.    Used in find_equiv_reg.  */
  202. int reload_first_uid;
  203.  
  204. /* Flag set by local-alloc or global-alloc if anything is live in
  205.    a call-clobbered reg across calls.  */
  206.  
  207. int caller_save_needed;
  208.  
  209. /* Set to 1 by alter_frame_pointer_addresses if it changes anything.  */
  210.  
  211. static int frame_pointer_address_altered;
  212.  
  213. #if defined( _MSDOS )
  214. void error_for_asm ( rtx insn, ... );
  215. #endif
  216.  
  217. void mark_home_live ();
  218. static rtx scan_paradoxical_subregs ();
  219. static void reload_as_needed ();
  220. static int modes_equiv_for_class_p ();
  221. static rtx alter_frame_pointer_addresses ();
  222. static void alter_reg ();
  223. static int new_spill_reg();
  224. static int spill_hard_reg ();
  225. static void choose_reload_regs ();
  226. static void emit_reload_insns ();
  227. static void delete_output_reload ();
  228. static void forget_old_reloads_1 ();
  229. static void order_regs_for_reload ();
  230. static void eliminate_frame_pointer ();
  231. static rtx inc_for_reload ();
  232. static int constraint_accepts_reg_p ();
  233. static int count_occurrences ();
  234. static rtx gen_input_reload ();
  235.  
  236. extern void remove_death ();
  237. extern rtx adj_offsettable_operand ();
  238.  
  239. /* Main entry point for the reload pass, and only entry point
  240.    in this file.
  241.  
  242.    FIRST is the first insn of the function being compiled.
  243.  
  244.    GLOBAL nonzero means we were called from global_alloc
  245.    and should attempt to reallocate any pseudoregs that we
  246.    displace from hard regs we will use for reloads.
  247.    If GLOBAL is zero, we do not have enough information to do that,
  248.    so any pseudo reg that is spilled must go to the stack.
  249.  
  250.    DUMPFILE is the global-reg debugging dump file stream, or 0.
  251.    If it is nonzero, messages are written to it to describe
  252.    which registers are seized as reload regs, which pseudo regs
  253.    are spilled from them, and where the pseudo regs are reallocated to.  */
  254.  
  255. void
  256. reload (first, global, dumpfile)
  257.      rtx first;
  258.      int global;
  259.      FILE *dumpfile;
  260. {
  261.   register int class;
  262.   register int i;
  263.   register rtx insn;
  264.  
  265.   int something_changed;
  266.   int something_needs_reloads;
  267.   int new_basic_block_needs;
  268.  
  269.   /* The basic block number currently being processed for INSN.  */
  270.   int this_block;
  271.  
  272.   /* Often (MEM (REG n)) is still valid even if (REG n) is put on the stack.
  273.      Set spill_indirect_ok if so.  */
  274.   register rtx tem
  275.     = gen_rtx (MEM, Pmode,
  276.            gen_rtx (PLUS, Pmode,
  277.             gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM),
  278.             gen_rtx (CONST_INT, VOIDmode, 4)));
  279.  
  280.   spill_indirect_ok = memory_address_p (QImode, tem);
  281.  
  282.   tem = gen_rtx (PLUS, Pmode, 
  283.          gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM),
  284.          gen_rtx (REG, Pmode, FRAME_POINTER_REGNUM));
  285.   /* This way, we make sure that reg+reg is an offsettable address.  */
  286.   tem = plus_constant (tem, 4);
  287.  
  288.   double_reg_address_ok = memory_address_p (QImode, tem);
  289.  
  290.   /* Enable find_equiv_reg to distinguish insns made by reload.  */
  291.   reload_first_uid = get_max_uid ();
  292.  
  293.   basic_block_needs = 0;
  294.  
  295.   /* Remember which hard regs appear explicitly
  296.      before we merge into `regs_ever_live' the ones in which
  297.      pseudo regs have been allocated.  */
  298.   bcopy (regs_ever_live, regs_explicitly_used, sizeof regs_ever_live);
  299.  
  300.   /* We don't have a stack slot for any spill reg yet.  */
  301.   bzero (spill_stack_slot, sizeof spill_stack_slot);
  302.   bzero (spill_stack_slot_width, sizeof spill_stack_slot_width);
  303.  
  304.   /* Compute which hard registers are now in use
  305.      as homes for pseudo registers.
  306.      This is done here rather than (eg) in global_alloc
  307.      because this point is reached even if not optimizing.  */
  308.  
  309.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  310.     mark_home_live (i);
  311.  
  312.   /* Make sure that the last insn in the chain
  313.      is not something that needs reloading.  */
  314.   emit_note (0, NOTE_INSN_DELETED);
  315.  
  316.   /* Find all the pseudo registers that didn't get hard regs
  317.      but do have known equivalent constants or memory slots.
  318.      These include parameters (known equivalent to parameter slots)
  319.      and cse'd or loop-moved constant memory addresses.
  320.  
  321.      Record constant equivalents in reg_equiv_constant
  322.      so they will be substituted by find_reloads.
  323.      Record memory equivalents in reg_mem_equiv so they can
  324.      be substituted eventually by altering the REG-rtx's.  */
  325.  
  326.   reg_equiv_constant = (rtx *) alloca (max_regno * sizeof (rtx));
  327.   bzero (reg_equiv_constant, max_regno * sizeof (rtx));
  328.   reg_equiv_mem = (rtx *) alloca (max_regno * sizeof (rtx));
  329.   bzero (reg_equiv_mem, max_regno * sizeof (rtx));
  330.   reg_equiv_init = (rtx *) alloca (max_regno * sizeof (rtx));
  331.   bzero (reg_equiv_init, max_regno * sizeof (rtx));
  332.   reg_equiv_address = (rtx *) alloca (max_regno * sizeof (rtx));
  333.   bzero (reg_equiv_address, max_regno * sizeof (rtx));
  334.   reg_max_ref_width = (int *) alloca (max_regno * sizeof (int));
  335.   bzero (reg_max_ref_width, max_regno * sizeof (int));
  336.  
  337.   /* Look for REG_EQUIV notes; record what each pseudo is equivalent to.
  338.      Also find all paradoxical subregs
  339.      and find largest such for each pseudo.  */
  340.  
  341.   for (insn = first; insn; insn = NEXT_INSN (insn))
  342.     {
  343.       if (GET_CODE (insn) == INSN
  344.       && GET_CODE (PATTERN (insn)) == SET
  345.       && GET_CODE (SET_DEST (PATTERN (insn))) == REG)
  346.     {
  347.       rtx note = find_reg_note (insn, REG_EQUIV, 0);
  348.       if (note)
  349.         {
  350.           rtx x = XEXP (note, 0);
  351.           i = REGNO (SET_DEST (PATTERN (insn)));
  352.           if (i >= FIRST_PSEUDO_REGISTER)
  353.         {
  354.           if (GET_CODE (x) == MEM)
  355.             {
  356.               if (memory_address_p (GET_MODE (x), XEXP (x, 0)))
  357.             reg_equiv_mem[i] = x;
  358.               else
  359.             reg_equiv_address[i] = XEXP (x, 0);
  360.             }
  361.           else if (immediate_operand (x, VOIDmode))
  362.             reg_equiv_constant[i] = x;
  363.           else
  364.             continue;
  365.           reg_equiv_init[i] = insn;
  366.         }
  367.         }
  368.     }
  369.       if (GET_CODE (insn) == INSN || GET_CODE (insn) == CALL_INSN
  370.       || GET_CODE (insn) == JUMP_INSN)
  371.     scan_paradoxical_subregs (PATTERN (insn));
  372.     }
  373.  
  374.   /* Does this function require a frame pointer?  */
  375.  
  376.   frame_pointer_needed
  377.     |= (! global || FRAME_POINTER_REQUIRED);
  378.  
  379.   if (! frame_pointer_needed)
  380.     frame_pointer_needed
  381.       = check_frame_pointer_required (reg_equiv_constant,
  382.                       reg_equiv_mem, reg_equiv_address);
  383.  
  384.   /* Alter each pseudo-reg rtx to contain its hard reg number.
  385.      Delete initializations of pseudos that don't have hard regs
  386.      and do have equivalents.
  387.      Assign stack slots to the pseudos that lack hard regs or equivalents.  */
  388.  
  389.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  390.     alter_reg (i, -1);
  391.  
  392. #ifndef REGISTER_CONSTRAINTS
  393.   /* If all the pseudo regs have hard regs,
  394.      except for those that are never referenced,
  395.      we know that no reloads are needed.  */
  396.   /* But that is not true if there are register constraints, since
  397.      in that case some pseudos might be in the wrong kind of hard reg.  */
  398.  
  399.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  400.     if (reg_renumber[i] == -1 && reg_n_refs[i] != 0)
  401.       break;
  402.  
  403.   if (i == max_regno && frame_pointer_needed && ! caller_save_needed)
  404.     return;
  405. #endif
  406.  
  407.   /* Compute the order of preference for hard registers to spill.
  408.      Store them by decreasing preference in potential_reload_regs.  */
  409.  
  410.   order_regs_for_reload ();
  411.  
  412.   /* So far, no hard regs have been spilled.  */
  413.   n_spills = 0;
  414.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  415.     {
  416.       spill_reg_order[i] = -1;
  417.       forbidden_regs[i] = -1;
  418.     }
  419.  
  420.   if (caller_save_needed)
  421.     frame_pointer_needed = 1;
  422.  
  423.   if (frame_pointer_needed)
  424.     {
  425.       forbidden_regs[FRAME_POINTER_REGNUM] = 1;
  426.       spill_hard_reg (FRAME_POINTER_REGNUM, global, dumpfile);
  427.     }
  428.  
  429.   if (global)
  430.     {
  431.       basic_block_needs = (char *)alloca (n_basic_blocks);
  432.       bzero (basic_block_needs, n_basic_blocks);
  433.     }
  434.  
  435.   /* This loop scans the entire function each go-round
  436.      and repeats until one repetition spills no additional hard regs.  */
  437.  
  438.   /* This flag is set when a psuedo reg is spilled,
  439.      to require another pass.  Note that getting an additional reload
  440.      reg does not necessarily imply any pseudo reg was spilled;
  441.      sometimes we find a reload reg that no pseudo reg was allocated in.  */
  442.   something_changed = 1;
  443.   /* This flag is set if there are any insns that require reloading.  */
  444.   something_needs_reloads = 0;
  445.   while (something_changed)
  446.     {
  447.       /* For each class, number of reload regs needed in that class.
  448.      This is the maximum over all insns of the needs in that class
  449.      of the individual insn.  */
  450.       int max_needs[N_REG_CLASSES];
  451.       /* For each class, size of group of consecutive regs
  452.      that is needed for the reloads of this class.  */
  453.       int group_size[N_REG_CLASSES];
  454.       /* For each class, max number of consecutive groups needed.
  455.      (Each group contains max_needs_size[CLASS] consecutive registers.)  */
  456.       int max_groups[N_REG_CLASSES];
  457.       /* For each class, max number needed of regs that don't belong
  458.      to any of the groups.  */
  459.       int max_nongroups[N_REG_CLASSES];
  460.       /* For each class, the machine mode which requires consecutive
  461.      groups of regs of that class.
  462.      If two different modes ever require groups of one class,
  463.      they must be the same size and equally restrictive for that class,
  464.      otherwise we can't handle the complexity.  */
  465.       enum machine_mode group_mode[N_REG_CLASSES];
  466.  
  467.       something_changed = 0;
  468.       bzero (max_needs, sizeof max_needs);
  469.       bzero (max_groups, sizeof max_groups);
  470.       bzero (max_nongroups, sizeof max_nongroups);
  471.       bzero (group_size, sizeof group_size);
  472.       for (i = 0; i < N_REG_CLASSES; i++)
  473.     group_mode[i] = VOIDmode;
  474.  
  475.       /* Keep track of which basic blocks are needing the reloads.  */
  476.       this_block = 0;
  477.  
  478.       /* Remember whether any element of basic_block_needs
  479.      changes from 0 to 1 in this pass.  */
  480.       new_basic_block_needs = 0;
  481.  
  482.       /* Compute the most additional registers needed by any instruction.
  483.      Collect information separately for each class of regs.  */
  484.  
  485.       for (insn = first; insn; insn = NEXT_INSN (insn))
  486.     {
  487.       if (global && this_block + 1 < n_basic_blocks
  488.           && insn == basic_block_head[this_block+1])
  489.         ++this_block;
  490.  
  491.       if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
  492.           || GET_CODE (insn) == CALL_INSN)
  493.         {
  494.           /* Initially, count RELOAD_OTHER reloads.
  495.          Later, merge in the other kinds.  */
  496.           int insn_needs[N_REG_CLASSES];
  497.           int insn_groups[N_REG_CLASSES];
  498.           int insn_total_groups = 0;
  499.  
  500.           /* Count RELOAD_FOR_INPUT_RELOAD_ADDRESS reloads.  */
  501.           int insn_needs_for_inputs[N_REG_CLASSES];
  502.           int insn_groups_for_inputs[N_REG_CLASSES];
  503.           int insn_total_groups_for_inputs = 0;
  504.  
  505.           /* Count RELOAD_FOR_OUTPUT_RELOAD_ADDRESS reloads.  */
  506.           int insn_needs_for_outputs[N_REG_CLASSES];
  507.           int insn_groups_for_outputs[N_REG_CLASSES];
  508.           int insn_total_groups_for_outputs = 0;
  509.  
  510.           /* Count RELOAD_FOR_OPERAND_ADDRESS reloads.  */
  511.           int insn_needs_for_operands[N_REG_CLASSES];
  512.           int insn_groups_for_operands[N_REG_CLASSES];
  513.           int insn_total_groups_for_operands = 0;
  514.  
  515.           for (i = 0; i < N_REG_CLASSES; i++)
  516.         {
  517.           insn_needs[i] = 0, insn_groups[i] = 0;
  518.           insn_needs_for_inputs[i] = 0, insn_groups_for_inputs[i] = 0;
  519.           insn_needs_for_outputs[i] = 0, insn_groups_for_outputs[i] = 0;
  520.           insn_needs_for_operands[i] = 0, insn_groups_for_operands[i] = 0;
  521.         }
  522.  
  523. #if 0  /* This wouldn't work nowadays, since optimize_bit_field
  524.       looks for non-strict memory addresses.  */
  525.           /* Optimization: a bit-field instruction whose field
  526.          happens to be a byte or halfword in memory
  527.          can be changed to a move instruction.  */
  528.  
  529.           if (GET_CODE (PATTERN (insn)) == SET)
  530.         {
  531.           rtx dest = SET_DEST (PATTERN (insn));
  532.           rtx src = SET_SRC (PATTERN (insn));
  533.  
  534.           if (GET_CODE (dest) == ZERO_EXTRACT
  535.               || GET_CODE (dest) == SIGN_EXTRACT)
  536.             optimize_bit_field (PATTERN (insn), insn, reg_equiv_mem);
  537.           if (GET_CODE (src) == ZERO_EXTRACT
  538.               || GET_CODE (src) == SIGN_EXTRACT)
  539.             optimize_bit_field (PATTERN (insn), insn, reg_equiv_mem);
  540.         }
  541. #endif
  542.  
  543.           /* Analyze the instruction.  */
  544.  
  545.           find_reloads (insn, 0, spill_indirect_ok, global, spill_reg_order);
  546.  
  547.           if (n_reloads == 0)
  548.         continue;
  549.  
  550.           something_needs_reloads = 1;
  551.  
  552.           /* Count each reload once in every class
  553.          containing the reload's own class.  */
  554.  
  555.           for (i = 0; i < n_reloads; i++)
  556.         {
  557.           register enum reg_class *p;
  558.           int size;
  559.           enum machine_mode mode;
  560.           int *this_groups;
  561.           int *this_needs;
  562.           int *this_total_groups;
  563.  
  564.           /* Don't use dummy reloads in regs
  565.              being spilled in this block.  */
  566.           if (reload_reg_rtx[i] != 0
  567.               && (!global || basic_block_needs[this_block])
  568.               && spill_reg_order[REGNO (reload_reg_rtx[i])] >= 0)
  569.             reload_reg_rtx[i] = 0;
  570.  
  571.           /* Don't count the dummy reloads, for which one of the
  572.              regs mentioned in the insn can be used for reloading.
  573.              Don't count optional reloads.
  574.              Don't count reloads that got combined with others.  */
  575.           if (reload_reg_rtx[i] != 0
  576.               || reload_optional[i] != 0
  577.               || (reload_out[i] == 0 && reload_in[i] == 0))
  578.             continue;
  579.  
  580.           /* Decide which time-of-use to count this reload for.  */
  581.           switch (reload_when_needed[i])
  582.             {
  583.             case RELOAD_OTHER:
  584.               this_needs = insn_needs;
  585.               this_groups = insn_groups;
  586.               this_total_groups = &insn_total_groups;
  587.               break;
  588.  
  589.             case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
  590.               this_needs = insn_needs_for_inputs;
  591.               this_groups = insn_groups_for_inputs;
  592.               this_total_groups = &insn_total_groups_for_inputs;
  593.               break;
  594.  
  595.             case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
  596.               this_needs = insn_needs_for_outputs;
  597.               this_groups = insn_groups_for_outputs;
  598.               this_total_groups = &insn_total_groups_for_outputs;
  599.               break;
  600.  
  601.             case RELOAD_FOR_OPERAND_ADDRESS:
  602.               this_needs = insn_needs_for_operands;
  603.               this_groups = insn_groups_for_operands;
  604.               this_total_groups = &insn_total_groups_for_operands;
  605.               break;
  606.             }
  607.  
  608.           mode = reload_inmode[i];
  609. #if defined( DSP96000 ) || defined( DSP56000 )
  610.           /* we can't use MODE_SIZE as an ordering. */
  611.           if ( reload_outmode[i] > mode )
  612.             {
  613.               mode = reload_outmode[i];
  614.             }
  615. #else
  616.           if (GET_MODE_SIZE (reload_outmode[i]) > GET_MODE_SIZE (mode))
  617.             mode = reload_outmode[i];
  618. #endif
  619.           size = CLASS_MAX_NREGS (reload_reg_class[i], mode);
  620.           if (size > 1)
  621.             {
  622.               /* Count number of groups needed separately from
  623.              number of individual regs needed.  */
  624.               this_groups[(int) reload_reg_class[i]]++;
  625.               p = reg_class_superclasses[(int) reload_reg_class[i]];
  626.               while (*p != LIM_REG_CLASSES)
  627.             this_groups[(int) *p++]++;
  628.               (*this_total_groups)++;
  629.  
  630.               /* If a group of consecutive regs are needed,
  631.              record which machine mode needs them.
  632.              Crash if two dissimilar machine modes both need
  633.              groups of consecutive regs of the same class.  */
  634.  
  635.               if (group_mode[(int) reload_reg_class[i]] != VOIDmode
  636.               &&
  637.               (! modes_equiv_for_class_p (group_mode[(int) reload_reg_class[i]], mode, reload_reg_class[i])
  638.                ||
  639.                group_size[(int) reload_reg_class[i]] != size))
  640.             abort ();
  641.  
  642.               /* Record size and mode of a group of this class.  */
  643.               group_size[(int) reload_reg_class[i]] = size;
  644.               group_mode[(int) reload_reg_class[i]] = mode;
  645.             }
  646.           else if (size == 1)
  647.             {
  648.               this_needs[(int) reload_reg_class[i]] += 1;
  649.               p = reg_class_superclasses[(int) reload_reg_class[i]];
  650.               while (*p != LIM_REG_CLASSES)
  651.             this_needs[(int) *p++] += 1;
  652.             }
  653.           else
  654.             abort ();
  655.  
  656.           if (global)
  657.             {
  658.               if (! basic_block_needs[this_block])
  659.             new_basic_block_needs = 1;
  660.               basic_block_needs[this_block] = 1;
  661.             }
  662.         }
  663.  
  664.           /* All reloads have been counted for this insn;
  665.          now merge the various times of use.
  666.          This sets insn_needs, etc., to the maximum total number
  667.          of registers needed at any point in this insn.  */
  668.  
  669.           for (i = 0; i < N_REG_CLASSES; i++)
  670.         {
  671.           int this_max;
  672.           this_max = insn_needs_for_inputs[i];
  673.           if (insn_needs_for_outputs[i] > this_max)
  674.             this_max = insn_needs_for_outputs[i];
  675.           if (insn_needs_for_operands[i] > this_max)
  676.             this_max = insn_needs_for_operands[i];
  677.           insn_needs[i] += this_max;
  678.           this_max = insn_groups_for_inputs[i];
  679.           if (insn_groups_for_outputs[i] > this_max)
  680.             this_max = insn_groups_for_outputs[i];
  681.           if (insn_groups_for_operands[i] > this_max)
  682.             this_max = insn_groups_for_operands[i];
  683.           insn_groups[i] += this_max;
  684.         }
  685.           insn_total_groups += max (insn_total_groups_for_inputs,
  686.                     max (insn_total_groups_for_outputs,
  687.                          insn_total_groups_for_operands));
  688.  
  689.           /* Remember for later shortcuts which insns had any reloads.  */
  690.  
  691.           PUT_MODE (insn, n_reloads ? QImode : VOIDmode);
  692.  
  693.           /* For each class, collect maximum need of any insn.  */
  694.  
  695.           for (i = 0; i < N_REG_CLASSES; i++)
  696.         {
  697.           if (max_needs[i] < insn_needs[i])
  698.             max_needs[i] = insn_needs[i];
  699.           if (max_groups[i] < insn_groups[i])
  700.             max_groups[i] = insn_groups[i];
  701.           if (insn_total_groups > 0)
  702.             if (max_nongroups[i] < insn_needs[i])
  703.               max_nongroups[i] = insn_needs[i];
  704.         }
  705.         }
  706.       /* Note that there is a continue statement above.  */
  707.     }
  708.  
  709.       /* Now deduct from the needs for the registers already
  710.      available (already spilled).  */
  711.  
  712.       bzero (counted_for_groups, sizeof counted_for_groups);
  713.       bzero (counted_for_nongroups, sizeof counted_for_nongroups);
  714.  
  715.       /* Find all consecutive groups of spilled registers
  716.      and mark each group off against the need for such groups.  */
  717.  
  718.       for (i = 0; i < N_REG_CLASSES; i++)
  719.     if (group_size[i] > 1)
  720.       {
  721.         char regmask[FIRST_PSEUDO_REGISTER];
  722.         int j;
  723.  
  724.         bzero (regmask, sizeof regmask);
  725.         /* Make a mask of all the regs that are spill regs in class I.  */
  726.         for (j = 0; j < n_spills; j++)
  727.           if (TEST_HARD_REG_BIT (reg_class_contents[i], spill_regs[j])
  728.           && !counted_for_groups[spill_regs[j]])
  729.         regmask[spill_regs[j]] = 1;
  730.         /* Find each consecutive group of them.  */
  731.         for (j = 0; j < FIRST_PSEUDO_REGISTER && max_groups[i] > 0; j++)
  732.           if (regmask[j] && j + group_size[i] <= FIRST_PSEUDO_REGISTER
  733.           /* Next line in case group-mode for this class
  734.              demands an even-odd pair.  */
  735.           && HARD_REGNO_MODE_OK (j, group_mode[i]))
  736.         {
  737.           int k;
  738.           for (k = 1; k < group_size[i]; k++)
  739.             if (! regmask[j + k])
  740.               break;
  741.           if (k == group_size[i])
  742.             {
  743.               /* We found a group.  Mark it off against this class's
  744.              need for groups, and against each superclass too.  */
  745.               register enum reg_class *p;
  746.               max_groups[i]--;
  747.               p = reg_class_superclasses[i];
  748.               while (*p != LIM_REG_CLASSES)
  749.             max_groups[(int) *p++]--;
  750.               /* Don't count these registers again.  */ 
  751.               counted_for_groups[j] = 1;
  752.               for (k = 1; k < group_size[i]; k++)
  753.             counted_for_groups[j + k] = 1;
  754.             }
  755. #if defined( DSP56000 ) || defined( DSP96000 )
  756.           /* we need to take into acount the auto-increment at the
  757.              top of the loop. this extra inc by one can make us
  758.              overlook back-to-back groups. */
  759.           j += (( 1 < k ) ? ( k - 1 ) : 0 );
  760. #else
  761.           j += k;
  762. #endif
  763.         }
  764.       }
  765.  
  766.       /* Now count all remaining spill regs against the individual need.
  767.      Those that weren't counted_for_groups in groups can also count against
  768.      the not-in-group need.  */
  769.  
  770.       for (i = 0; i < n_spills; i++)
  771.     {
  772.       register enum reg_class *p;
  773.       class = (int) REGNO_REG_CLASS (spill_regs[i]);
  774.  
  775.       max_needs[class]--;
  776.       p = reg_class_superclasses[class];
  777.       while (*p != LIM_REG_CLASSES)
  778.         max_needs[(int) *p++]--;
  779.  
  780.       if (! counted_for_groups[spill_regs[i]])
  781.         {
  782.           if (max_nongroups[class] > 0)
  783.         counted_for_nongroups[spill_regs[i]] = 1;
  784.           max_nongroups[class]--;
  785.           p = reg_class_superclasses[class];
  786.           while (*p != LIM_REG_CLASSES)
  787.         {
  788.           if (max_nongroups[(int) *p] > 0)
  789.             counted_for_nongroups[spill_regs[i]] = 1;
  790.           max_nongroups[(int) *p++]--;
  791.         }
  792.         }
  793.     }
  794.  
  795.       /* If all needs are met, we win.  */
  796.  
  797.       for (i = 0; i < N_REG_CLASSES; i++)
  798.     if (max_needs[i] > 0 || max_groups[i] > 0 || max_nongroups[i] > 0)
  799.       break;
  800.       if (i == N_REG_CLASSES && !new_basic_block_needs)
  801.     break;
  802.  
  803.       /* Not all needs are met; must spill more hard regs.  */
  804.  
  805.       /* If any element of basic_block_needs changed from 0 to 1,
  806.      re-spill all the regs already spilled.  This may spill
  807.      additional pseudos that didn't spill before.  */
  808.  
  809.       if (new_basic_block_needs)
  810.     for (i = 0; i < n_spills; i++)
  811.       something_changed
  812.         |= spill_hard_reg (spill_regs[i], global, dumpfile);
  813.  
  814.       /* Now find more reload regs to satisfy the remaining need
  815.      Do it by ascending class number, since otherwise a reg
  816.      might be spilled for a big class and might fail to count
  817.      for a smaller class even though it belongs to that class.
  818.  
  819.      Count spilled regs in `spills', and add entries to
  820.      `spill_regs' and `spill_reg_order'.  */
  821.  
  822.       for (class = 0; class < N_REG_CLASSES; class++)
  823.     {
  824.       /* First get the groups of registers.
  825.          If we got single registers first, we might fragment
  826.          possible groups.  */
  827.       while (max_groups[class] > 0)
  828.         {
  829.           /* Groups of size 2 (the only groups used on most machines)
  830.          are treated specially.  */
  831.           if (group_size[class] == 2)
  832.         {
  833.           /* First, look for a register that will complete a group.  */
  834.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  835.             {
  836.               int j = potential_reload_regs[i];
  837.               int other;
  838.               if (j >= 0 && !fixed_regs[j]
  839.               &&
  840.               ((j > 0 && (other = j - 1, spill_reg_order[other] >= 0)
  841.                 && TEST_HARD_REG_BIT (reg_class_contents[class], j)
  842.                 && TEST_HARD_REG_BIT (reg_class_contents[class], other)
  843.                 && HARD_REGNO_MODE_OK (other, group_mode[class])
  844.                 && ! counted_for_nongroups[other]
  845.                 /* We don't want one part of another group.
  846.                    We could get "two groups" that overlap!  */
  847.                 && ! counted_for_groups[other])
  848.  
  849.                ||
  850.                (j < FIRST_PSEUDO_REGISTER - 1
  851.                 && (other = j + 1, spill_reg_order[other] >= 0)
  852.                 && TEST_HARD_REG_BIT (reg_class_contents[class], j)
  853.                 && TEST_HARD_REG_BIT (reg_class_contents[class], other)
  854.                 && HARD_REGNO_MODE_OK (j, group_mode[class])
  855.                 && ! counted_for_nongroups[other]
  856.                 && ! counted_for_groups[other])))
  857.             {
  858.               register enum reg_class *p;
  859.  
  860.               /* We have found one that will complete a group,
  861.                  so count off one group as provided.  */
  862.               max_groups[class]--;
  863.               p = reg_class_superclasses[class];
  864.               while (*p != LIM_REG_CLASSES)
  865.                 max_groups[(int) *p++]--;
  866.  
  867.               /* Indicate both these regs are part of a group.  */
  868.               counted_for_groups[j] = 1;
  869.               counted_for_groups[other] = 1;
  870.  
  871.               break;
  872.             }
  873.             }
  874.           /* We can't complete a group, so start one.  */
  875.           if (i == FIRST_PSEUDO_REGISTER)
  876.             for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  877.               {
  878.             int j = potential_reload_regs[i];
  879.             if (j >= 0 && j + 1 < FIRST_PSEUDO_REGISTER
  880.                 && spill_reg_order[j] < 0 && spill_reg_order[j + 1] < 0
  881.                 && TEST_HARD_REG_BIT (reg_class_contents[class], j)
  882.                 && TEST_HARD_REG_BIT (reg_class_contents[class], j + 1)
  883.                 && HARD_REGNO_MODE_OK (j, group_mode[class])
  884.                 && ! counted_for_nongroups[j + 1])
  885.               break;
  886.               }
  887.  
  888.           /* I should be the index in potential_reload_regs
  889.              of the new reload reg we have found.  */
  890.  
  891.           something_changed
  892.             |= new_spill_reg (i, class, max_needs, 0,
  893.                       global, dumpfile);
  894.         }
  895.           else
  896.         {
  897.           /* For groups of more than 2 registers,
  898.              look for a sufficient sequence of unspilled registers,
  899.              and spill them all at once.  */
  900.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  901.             {
  902.               int j = potential_reload_regs[i];
  903.               int k;
  904.               if (j >= 0 && j + 1 < FIRST_PSEUDO_REGISTER
  905.               && HARD_REGNO_MODE_OK (j, group_mode[class]))
  906.             {
  907.               /* Check each reg in the sequence.  */
  908.               for (k = 0; k < group_size[class]; k++)
  909.                 if (! (spill_reg_order[j + k] < 0
  910.                    && !fixed_regs[j + k]
  911.                    && TEST_HARD_REG_BIT (reg_class_contents[class], j + k)))
  912.                   break;
  913.               /* We got a full sequence, so spill them all.  */
  914.               if (k == group_size[class])
  915.                 {
  916.                   register enum reg_class *p;
  917.                   for (k = 0; k < group_size[class]; k++)
  918.                 {
  919.                   int idx;
  920.                   counted_for_groups[j + k] = 1;
  921.                   for (idx = 0; idx < FIRST_PSEUDO_REGISTER; idx++)
  922.                     if (potential_reload_regs[idx] == j + k)
  923.                       break;
  924.                   something_changed
  925.                     |= new_spill_reg (idx, class, max_needs, 0,
  926.                               global, dumpfile);
  927.                 }
  928.  
  929.                   /* We have found one that will complete a group,
  930.                  so count off one group as provided.  */
  931.                   max_groups[class]--;
  932.                   p = reg_class_superclasses[class];
  933.                   while (*p != LIM_REG_CLASSES)
  934.                 max_groups[(int) *p++]--;
  935.  
  936.                   break;
  937.                 }
  938.             }
  939.             }
  940.         }
  941.         }
  942.  
  943.       /* Now similarly satisfy all need for single registers.  */
  944.  
  945.       while (max_needs[class] > 0 || max_nongroups[class] > 0)
  946.         {
  947.           /* Consider the potential reload regs that aren't
  948.          yet in use as reload regs, in order of preference.
  949.          Find the most preferred one that's in this class.  */
  950.  
  951.           for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  952.         if (potential_reload_regs[i] >= 0
  953.             && TEST_HARD_REG_BIT (reg_class_contents[class],
  954.                       potential_reload_regs[i]))
  955.           break;
  956.  
  957.           /* I should be the index in potential_reload_regs
  958.          of the new reload reg we have found.  */
  959.  
  960.           something_changed
  961.         |= new_spill_reg (i, class, max_needs, max_nongroups,
  962.                   global, dumpfile);
  963.         }
  964.     }
  965.     }
  966.  
  967.   /* Insert code to save and restore call-clobbered hard regs
  968.      around calls.  */
  969.  
  970.   if (caller_save_needed)
  971.     save_call_clobbered_regs ();
  972.  
  973.   /* Now we know for certain whether we have a frame pointer.
  974.      If not, correct all references to go through the stack pointer.
  975.      This must be done before reloading, since reloading could generate
  976.      insns where sp+const cannot validly replace the frame pointer.
  977.      *This will lose if an insn might need more spill regs after
  978.      frame pointer elimination than it needed before.*  */
  979.  
  980.   if (! frame_pointer_needed)
  981.     eliminate_frame_pointer (first);
  982.  
  983.   /* Use the reload registers where necessary
  984.      by generating move instructions to move the must-be-register
  985.      values into or out of the reload registers.  */
  986.  
  987.   if (something_needs_reloads)
  988.     reload_as_needed (first, global);
  989.  
  990.   /* Now eliminate all pseudo regs by modifying them into
  991.      their equivalent memory references.
  992.      The REG-rtx's for the pseudos are modified in place,
  993.      so all insns that used to refer to them now refer to memory.
  994.  
  995.      For a reg that has a reg_equiv_address, all those insns
  996.      were changed by reloading so that no insns refer to it any longer;
  997.      but the DECL_RTL of a variable decl may refer to it,
  998.      and if so this causes the debugging info to mention the variable.  */
  999.  
  1000.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  1001.     {
  1002.       rtx addr = 0;
  1003.       if (reg_equiv_mem[i])
  1004.     addr = XEXP (reg_equiv_mem[i], 0);
  1005.       if (reg_equiv_address[i])
  1006.     addr = reg_equiv_address[i];
  1007.       if (addr)
  1008.     {
  1009.       if (! frame_pointer_needed)
  1010.         FIX_FRAME_POINTER_ADDRESS (addr, 0);
  1011.       if (reg_renumber[i] < 0)
  1012.         {
  1013.           rtx reg = regno_reg_rtx[i];
  1014.           XEXP (reg, 0) = addr;
  1015.           REG_USERVAR_P (reg) = 0;
  1016.           PUT_CODE (reg, MEM);
  1017.         }
  1018.       else if (reg_equiv_mem[i])
  1019.         XEXP (reg_equiv_mem[i], 0) = addr;
  1020.     }
  1021.     }
  1022. #if defined( DSP56000 ) || defined( DSP96000 )
  1023.       /* this is part of the kludge to clean up the reload fiasco. 
  1024.      basically, we comb thru the code for the following situation:
  1025.  
  1026.      ( SET ( MEM1 ) ( REG1 ))
  1027.      ( SET ( REG2 ) ( MEM2 )).
  1028.  
  1029.      we check to see that MEM1 and MEM2 are the same and that they're
  1030.      reload generated addresses. We may have found a spurious reload.
  1031.      In any case, we can save the gratuitous memory read by doing a 
  1032.      
  1033.      ( SET ( REG2 ) ( REG1 ))
  1034.  
  1035.      in it's place. We go on to check whether the memory write is also
  1036.      gratuitous. If we encounter a subsequent write to the same location
  1037.      and no possible read from it (in the same basic block), then we
  1038.      can assume that the memory write can be deleted. If REG1 is the
  1039.      same as REG2, we can delete that move as well. */
  1040.  
  1041.     if ( TARGET_RELOAD_CLEANUP )
  1042.     {
  1043.     int block = 0;
  1044.     for ( ; block < n_basic_blocks; ++ block )
  1045.     {
  1046.         rtx step = basic_block_head[ block ], ahead;
  1047.         rtx end = basic_block_end[ block ];
  1048.  
  1049.         while ( step != end )
  1050.         {
  1051.         if ( INSN == GET_CODE ( step ) &&
  1052.             SET == GET_CODE ( PATTERN ( step )) &&
  1053.             MEM == GET_CODE ( SET_DEST ( PATTERN ( step ))) &&
  1054.             RTX_RELOAD_GENERATED_P ( XEXP ( SET_DEST ( PATTERN ( step
  1055.                                     )),
  1056.                            0 )) &&
  1057.             ! MEM_VOLATILE_P ( SET_DEST ( PATTERN ( step ))) &&
  1058.             REG == GET_CODE ( SET_SRC ( PATTERN ( step ))) &&
  1059.             end != ( ahead = NEXT_INSN ( step )) &&
  1060.             INSN == GET_CODE ( ahead ) &&
  1061.             SET == GET_CODE ( PATTERN ( ahead )) &&
  1062.             REG == GET_CODE ( SET_DEST ( PATTERN ( ahead ))) &&
  1063.             MEM == GET_CODE ( SET_SRC ( PATTERN ( ahead ))) &&
  1064.             rtx_equal_p ( SET_DEST ( PATTERN ( step )),
  1065.                  SET_SRC ( PATTERN ( ahead ))))
  1066.         {
  1067.             rtx next_use = NEXT_INSN ( ahead );
  1068.             
  1069.             while ( next_use && next_use != NEXT_INSN ( end ))
  1070.             {
  1071.             if ( INSN == GET_CODE ( next_use ) &&
  1072.                 reg_mentioned_p ( SET_DEST ( PATTERN ( step )),
  1073.                          PATTERN ( next_use )))
  1074.             {
  1075.                 if ( SET == GET_CODE ( PATTERN ( next_use )) &&
  1076.                 rtx_equal_p ( SET_DEST ( PATTERN ( next_use )),
  1077.                          SET_DEST ( PATTERN ( step ))))
  1078.                 {
  1079.                 if ( rtx_equal_p ( SET_SRC ( PATTERN ( step )),
  1080.                           SET_DEST ( PATTERN ( ahead ))))
  1081.                 {
  1082.                     PUT_CODE ( step, NOTE );
  1083.                     PUT_CODE ( ahead, NOTE );
  1084.                     INSN_DELETED_P ( step ) = 1;
  1085.                     INSN_DELETED_P ( ahead ) = 1;
  1086.                 }
  1087.                 else
  1088.                 {
  1089.                     SET_DEST ( PATTERN ( step )) =
  1090.                     SET_DEST ( PATTERN ( ahead ));
  1091.                     PUT_CODE ( ahead, NOTE );
  1092.                     INSN_DELETED_P ( ahead ) = 1;
  1093.                 }
  1094.                 }
  1095.                 next_use = 0;
  1096.             }
  1097.             else
  1098.             {
  1099.                 next_use = NEXT_INSN ( next_use );
  1100.             }
  1101.             }
  1102.             if ( rtx_equal_p ( SET_SRC ( PATTERN ( step )),
  1103.                       SET_DEST ( PATTERN ( ahead ))))
  1104.             {
  1105.             PUT_CODE ( ahead, NOTE );
  1106.             INSN_DELETED_P ( ahead ) = 1;
  1107.             }
  1108.             else
  1109.             {
  1110.             SET_SRC ( PATTERN ( ahead )) = 
  1111.                 SET_SRC ( PATTERN ( step ));
  1112.             }
  1113.         }
  1114.         step = NEXT_INSN ( step );
  1115.         }
  1116.     }
  1117.     }
  1118. #endif
  1119. }
  1120.  
  1121. /* 1 if two machine modes MODE0 and MODE1 are equivalent
  1122.    as far as HARD_REGNO_MODE_OK is concerned
  1123.    for registers in class CLASS.  */
  1124.  
  1125. static int
  1126. modes_equiv_for_class_p (mode0, mode1, class)
  1127.      enum machine_mode mode0, mode1;
  1128.      enum reg_class class;
  1129. {
  1130.   register int regno;
  1131.   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
  1132.     {
  1133.       /* If any reg in CLASS allows one mode but not the other, fail.
  1134.      Or if the two modes have different sizes in that reg, fail.  */
  1135.       if (TEST_HARD_REG_BIT (reg_class_contents[(int) class], regno)
  1136.       && (HARD_REGNO_MODE_OK (regno, mode0)
  1137.           != HARD_REGNO_MODE_OK (regno, mode1))
  1138.       && (HARD_REGNO_NREGS (regno, mode0)
  1139.           != HARD_REGNO_NREGS (regno, mode1)))
  1140.     return 0;
  1141.     }
  1142.   return 1;
  1143. }
  1144.  
  1145. /* Add a new register to the tables of available spill-registers
  1146.     (as well as spilling all pseudos allocated to the register).
  1147.    I is the index of this register in potential_reload_regs.
  1148.    CLASS is the regclass whose need is being satisfied.
  1149.    MAX_NEEDS and MAX_NONGROUPS are the vectors of needs,
  1150.     so that this register can count off against them.
  1151.     MAX_NONGROUPS is 0 if this register is part of a group.
  1152.    GLOBAL and DUMPFILE are the same as the args that `reload' got.  */
  1153.  
  1154. static int
  1155. new_spill_reg (i, class, max_needs, max_nongroups, global, dumpfile)
  1156.      int i;
  1157.      int class;
  1158.      int *max_needs;
  1159.      int *max_nongroups;
  1160.      int global;
  1161.      FILE *dumpfile;
  1162. {
  1163.   register enum reg_class *p;
  1164.   int val;
  1165.   int regno = potential_reload_regs[i];
  1166.  
  1167.   if (i >= FIRST_PSEUDO_REGISTER)
  1168.     abort ();    /* Caller failed to find any register.  */
  1169.  
  1170.   /* Make reg REGNO an additional reload reg.  */
  1171.  
  1172.   potential_reload_regs[i] = -1;
  1173.   spill_regs[n_spills] = regno;
  1174.   spill_reg_order[regno] = n_spills;
  1175.   forbidden_regs[regno] = 1;
  1176.   if (dumpfile)
  1177.     fprintf (dumpfile, "Spilling reg %d.\n", spill_regs[n_spills]);
  1178.  
  1179.   /* Clear off the needs we just satisfied.  */
  1180.  
  1181.   max_needs[class]--;
  1182.   p = reg_class_superclasses[class];
  1183.   while (*p != LIM_REG_CLASSES)
  1184.     max_needs[(int) *p++]--;
  1185.  
  1186.   if (max_nongroups && max_nongroups[class] > 0)
  1187.     {
  1188.       counted_for_nongroups[regno] = 1;
  1189.       max_nongroups[class]--;
  1190.       p = reg_class_superclasses[class];
  1191.       while (*p != LIM_REG_CLASSES)
  1192.     max_nongroups[(int) *p++]--;
  1193.     }
  1194.  
  1195.   /* Spill every pseudo reg that was allocated to this reg
  1196.      or to something that overlaps this reg.  */
  1197.  
  1198.   val = spill_hard_reg (spill_regs[n_spills], global, dumpfile);
  1199.  
  1200.   regs_ever_live[spill_regs[n_spills]] = 1;
  1201.   n_spills++;
  1202.  
  1203.   return val;
  1204. }
  1205.  
  1206. /* Scan all insns, computing the stack depth, and convert all
  1207.    frame-pointer-relative references to stack-pointer-relative references.  */
  1208.  
  1209. static void
  1210. eliminate_frame_pointer (first)
  1211.      rtx first;
  1212. {
  1213.   int depth = 0;
  1214.   int max_uid = get_max_uid ();
  1215.   int *label_depth = (int *) alloca ((max_uid + 1) * sizeof (int));
  1216.   int i;
  1217.   rtx insn;
  1218.  
  1219.   for (i = 0; i <= max_uid; i++)
  1220.     label_depth[i] = -1;
  1221.  
  1222.   /* In this loop, for each forward branch we record the stack
  1223.      depth of the label it jumps to.  We take advantage of the fact
  1224.      that the stack depth at a label reached by a backward branch
  1225.      is always, in GCC output, equal to the stack depth of the preceding
  1226.      unconditional jump, because it was either a loop statement or
  1227.      statement label.  */
  1228.  
  1229.   for (insn = first; insn; insn = NEXT_INSN (insn))
  1230.     {
  1231.       rtx pattern = PATTERN (insn);
  1232.       switch (GET_CODE (insn))
  1233.     {
  1234.     case INSN:
  1235.       frame_pointer_address_altered = 0;
  1236.       alter_frame_pointer_addresses (pattern, depth);
  1237.       /* Rerecognize insn if changed.  */
  1238.       if (frame_pointer_address_altered)
  1239.         INSN_CODE (insn) = -1;
  1240.  
  1241.       /* Notice pushes and pops; update DEPTH.  */
  1242.       if (GET_CODE (pattern) == SET)
  1243.         {
  1244. #ifdef PUSH_ROUNDING
  1245.           if (push_operand (SET_DEST (pattern),
  1246.                 GET_MODE (SET_DEST (pattern))))
  1247.         depth += PUSH_ROUNDING (GET_MODE_SIZE (GET_MODE (SET_DEST (pattern))));
  1248. #endif
  1249.           if (GET_CODE (SET_DEST (pattern)) == REG
  1250.           && REGNO (SET_DEST (pattern)) == STACK_POINTER_REGNUM)
  1251.         {
  1252.           int delta;
  1253.           if (GET_CODE (SET_SRC (pattern)) == PLUS
  1254.               && GET_CODE (XEXP (SET_SRC (pattern), 0)) == REG
  1255.               && REGNO (XEXP (SET_SRC (pattern), 0)) == STACK_POINTER_REGNUM)
  1256.             delta = INTVAL (XEXP (SET_SRC (pattern), 1));
  1257.           else if (GET_CODE (SET_SRC (pattern)) == MINUS
  1258.                && GET_CODE (XEXP (SET_SRC (pattern), 0)) == REG
  1259.                && REGNO (XEXP (SET_SRC (pattern), 0)) == STACK_POINTER_REGNUM)
  1260.             delta = -INTVAL (XEXP (SET_SRC (pattern), 1));
  1261.           else abort ();
  1262. #ifdef STACK_GROWS_DOWNWARD
  1263.           depth -= delta;
  1264. #else
  1265.           depth += delta;
  1266. #endif
  1267.         }
  1268.         }
  1269.       break;
  1270.  
  1271.     case JUMP_INSN:
  1272.       frame_pointer_address_altered = 0;
  1273.       alter_frame_pointer_addresses (pattern, depth);
  1274.       /* Rerecognize insn if changed.  */
  1275.       if (frame_pointer_address_altered)
  1276.         INSN_CODE (insn) = -1;
  1277.  
  1278.       if (GET_CODE (pattern) == ADDR_VEC)
  1279.         for (i = 0; i < XVECLEN (pattern, 0); i++)
  1280.           label_depth[INSN_UID (XEXP (XVECEXP (pattern, 0, i), 0))] = depth;
  1281.       else if (GET_CODE (pattern) == ADDR_DIFF_VEC)
  1282.         {
  1283.           label_depth[INSN_UID (XEXP (XEXP (pattern, 0), 0))] = depth;
  1284.           for (i = 0; i < XVECLEN (pattern, 1); i++)
  1285.         label_depth[INSN_UID (XEXP (XVECEXP (pattern, 1, i), 0))] = depth;
  1286.         }
  1287.       else if (JUMP_LABEL (insn))
  1288.         label_depth[INSN_UID (JUMP_LABEL (insn))] = depth;
  1289.       else
  1290.       break;
  1291.  
  1292.     case CODE_LABEL:
  1293.       if (label_depth [INSN_UID (insn)] >= 0)
  1294.         depth = label_depth [INSN_UID (insn)];
  1295.       break;
  1296.  
  1297.     case CALL_INSN:
  1298.       frame_pointer_address_altered = 0;
  1299.       alter_frame_pointer_addresses (pattern, depth);
  1300.       /* Rerecognize insn if changed.  */
  1301.       if (frame_pointer_address_altered)
  1302.         INSN_CODE (insn) = -1;
  1303.       break;
  1304.     }
  1305.     }
  1306. }
  1307.  
  1308. /* Walk the rtx X, converting all frame-pointer refs to stack-pointer refs
  1309.    on the assumption that the current temporary stack depth is DEPTH.
  1310.    (The size of saved registers must be added to DEPTH
  1311.    to get the actual offset between the logical frame-pointer and the
  1312.    stack pointer.  FIX_FRAME_POINTER_ADDRESS takes care of that.)  */
  1313.  
  1314. static rtx
  1315. alter_frame_pointer_addresses (x, depth)
  1316.      register rtx x;
  1317.      int depth;
  1318. {
  1319.   register int i;
  1320.   register char *fmt;
  1321.   register enum rtx_code code = GET_CODE (x);
  1322.  
  1323.   switch (code)
  1324.     {
  1325.     case CONST_INT:
  1326.     case CONST:
  1327.     case SYMBOL_REF:
  1328.     case LABEL_REF:
  1329.     case CONST_DOUBLE:
  1330.     case CC0:
  1331.     case PC:
  1332.       return x;
  1333.  
  1334.     case REG:
  1335.       /* Frame ptr can occur outside a PLUS if a stack slot
  1336.      can occur with offset 0.  */
  1337.       if (x == frame_pointer_rtx)
  1338.     {
  1339.       rtx oldx = x;
  1340.       FIX_FRAME_POINTER_ADDRESS (x, depth);
  1341.       if (x != oldx)
  1342.         frame_pointer_address_altered = 1;
  1343.     }
  1344.       return x;
  1345.  
  1346.     case MEM:
  1347.       {
  1348.     rtx addr = XEXP (x, 0);
  1349.     rtx mem;
  1350.     rtx old_addr = addr;
  1351.     FIX_FRAME_POINTER_ADDRESS (addr, depth);
  1352.     if (addr != old_addr)
  1353.       frame_pointer_address_altered = 1;
  1354.     /* These MEMs are normally shared.  Make a changed copy;
  1355.        don't alter the shared MEM, since it needs to be altered
  1356.        differently each time it occurs (since DEPTH varies).  */
  1357.     mem = gen_rtx (MEM, GET_MODE (x), addr);
  1358.     MEM_VOLATILE_P (mem) = MEM_VOLATILE_P (x);
  1359.     return mem;
  1360.       }
  1361.  
  1362.     case PLUS:
  1363.       {
  1364.     rtx oldx = x;
  1365.     /* Handle addresses being loaded or pushed, etc.,
  1366.        rather than referenced.  */
  1367.     FIX_FRAME_POINTER_ADDRESS (x, depth);
  1368.     if (x != oldx)
  1369.       frame_pointer_address_altered = 1;
  1370.     code = GET_CODE (x);
  1371.     break;
  1372.       }
  1373.     }
  1374.  
  1375.   fmt = GET_RTX_FORMAT (code);
  1376.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  1377.     {
  1378.       if (fmt[i] == 'e')
  1379.     XEXP (x, i) = alter_frame_pointer_addresses (XEXP (x, i), depth);
  1380.       else if (fmt[i] == 'E')
  1381.     {
  1382.       register int j;
  1383.       for (j = XVECLEN (x, i) - 1; j >=0; j--)
  1384.         XVECEXP (x, i, j)
  1385.           = alter_frame_pointer_addresses (XVECEXP (x, i, j), depth);
  1386.     }
  1387.     }
  1388.   return x;
  1389. }
  1390.  
  1391. /* Modify the home of pseudo-reg I.
  1392.    The new home is present in reg_renumber[I].
  1393.  
  1394.    FROM_REG may be the hard reg that the pseudo-reg is being spilled from;
  1395.    or it may be -1, meaning there is none or it is not relevant.
  1396.    This is used so that all pseudos spilled from a given hard reg
  1397.    can share one stack slot.  */
  1398.  
  1399. static void
  1400. alter_reg (i, from_reg)
  1401.      register int i;
  1402.      int from_reg;
  1403. {
  1404.   /* When outputting an inline function, this can happen
  1405.      for a reg that isn't actually used.  */
  1406.   if (regno_reg_rtx[i] == 0)
  1407.     return;
  1408.  
  1409.   /* If the reg got changed to a MEM at rtl-generation time,
  1410.      ignore it.  */
  1411.   if (GET_CODE (regno_reg_rtx[i]) != REG)
  1412.     return;
  1413.  
  1414.   /* Modify the reg-rtx to contain the new hard reg
  1415.      number or else to contain its pseudo reg number.  */
  1416.   REGNO (regno_reg_rtx[i])
  1417.     = reg_renumber[i] >= 0 ? reg_renumber[i] : i;
  1418.  
  1419.   if (reg_renumber[i] < 0 && reg_equiv_init[i])
  1420.     {
  1421.       /* Delete the insn that loads the pseudo register.  */
  1422.       PUT_CODE (reg_equiv_init[i], NOTE);
  1423.       NOTE_LINE_NUMBER (reg_equiv_init[i])
  1424.     = NOTE_INSN_DELETED;
  1425.       NOTE_SOURCE_FILE (reg_equiv_init[i]) = 0;
  1426.     }
  1427.  
  1428.   /* If we have a pseudo that is needed but has no hard reg or equivalent,
  1429.      allocate a stack slot for it.  */
  1430.  
  1431.   if (reg_renumber[i] < 0
  1432.       && reg_n_refs[i] > 0
  1433.       && reg_equiv_constant[i] == 0
  1434.       && reg_equiv_mem[i] == 0
  1435.       && reg_equiv_address[i] == 0)
  1436.     {
  1437.       register rtx x, addr;
  1438.       int inherent_size = PSEUDO_REGNO_BYTES (i);
  1439.       int total_size = max (inherent_size, reg_max_ref_width[i]);
  1440.  
  1441.       /* Each pseudo reg has an inherent size which comes from its own mode,
  1442.      and a total size which provides room for paradoxical subregs
  1443.      which refer to the pseudo reg in wider modes.
  1444.  
  1445.      We can use a slot already allocated if it provides both
  1446.      enough inherent space and enough total space.
  1447.      Otherwise, we allocate a new slot, making sure that it has no less
  1448.      inherent space, and no less total space, then the previous slot.  */
  1449.       if (from_reg == -1)
  1450.     {
  1451.       /* No known place to spill from => no slot to reuse.  */
  1452.       x = assign_stack_local (GET_MODE (regno_reg_rtx[i]), total_size);
  1453. #ifdef BYTES_BIG_ENDIAN
  1454.       /* Cancel the  big-endian correction done in assign_stack_local.
  1455.          Get the address of the beginning of the slot.
  1456.          This is so we can do a big-endian correction unconditionally
  1457.          below.  */
  1458.       x = gen_rtx (MEM, GET_MODE (regno_reg_rtx[i]),
  1459.                plus_constant (XEXP (x, 0),
  1460.                       inherent_size - total_size));
  1461. #endif
  1462.     }
  1463.       /* Reuse a stack slot if possible.  */
  1464.       else if (spill_stack_slot[from_reg] != 0
  1465.            && spill_stack_slot_width[from_reg] >= total_size
  1466.            && (GET_MODE_SIZE (GET_MODE (spill_stack_slot[from_reg]))
  1467.            >= inherent_size))
  1468.     x = spill_stack_slot[from_reg];
  1469.       /* Allocate a new or bigger slot.  */
  1470.       else
  1471.     {
  1472.       /* Compute maximum size needed, both for inherent size
  1473.          and for total size.  */
  1474.       enum machine_mode mode = GET_MODE (regno_reg_rtx[i]);
  1475.       if (spill_stack_slot[from_reg])
  1476.         {
  1477.           if (GET_MODE_SIZE (GET_MODE (spill_stack_slot[from_reg]))
  1478.           > inherent_size)
  1479.         mode = GET_MODE (spill_stack_slot[from_reg]);
  1480.           if (spill_stack_slot_width[from_reg] > total_size)
  1481.         total_size = spill_stack_slot_width[from_reg];
  1482.         }
  1483.       /* Make a slot with that size.  */
  1484.       x = assign_stack_local (mode, total_size);
  1485. #ifdef BYTES_BIG_ENDIAN
  1486.       /* Cancel the  big-endian correction done in assign_stack_local.
  1487.          Get the address of the beginning of the slot.
  1488.          This is so we can do a big-endian correction unconditionally
  1489.          below.  */
  1490.       x = gen_rtx (MEM, mode,
  1491.                plus_constant (XEXP (x, 0),
  1492.                       GET_MODE_SIZE (mode) - total_size));
  1493. #endif
  1494.       spill_stack_slot[from_reg] = x;
  1495.       spill_stack_slot_width[from_reg] = total_size;
  1496.     }
  1497.  
  1498. #ifdef BYTES_BIG_ENDIAN
  1499.       /* On a big endian machine, the "address" of the slot
  1500.      is the address of the low part that fits its inherent mode.  */
  1501.       if (inherent_size < total_size)
  1502.     x = gen_rtx (MEM, GET_MODE (regno_reg_rtx[i]),
  1503.              plus_constant (XEXP (x, 0),
  1504.                     total_size - inherent_size));
  1505. #endif /* BYTES_BIG_ENDIAN */
  1506.  
  1507.       addr = XEXP (x, 0);
  1508.  
  1509.       /* If the stack slot is directly addressable, substitute
  1510.      the MEM we just got directly for the old REG.
  1511.      Otherwise, record the address; we will generate hairy code
  1512.      to compute the address in a register each time it is needed.  */
  1513.       if (memory_address_p (GET_MODE (regno_reg_rtx[i]), addr))
  1514.     reg_equiv_mem[i] = x;
  1515.       else
  1516.     reg_equiv_address[i] = XEXP (x, 0);
  1517. #if defined( DSP56000 ) || defined( DSP96000 )
  1518.       /* this is part of the kludge to clean up the reload fiasco. 
  1519.      here we tag this address 'x' as a reload generated stack slot.
  1520.      these stack slots are not to be referenced via an alias, except
  1521.      in the case of a programmer bug, where the behavior is undefined
  1522.      anyway. */
  1523.       RTX_RELOAD_GENERATED_P ( XEXP ( x, 0 )) = 1;
  1524. #endif
  1525.     }
  1526. }
  1527.  
  1528. /* Mark the slots in regs_ever_live for the hard regs
  1529.    used by pseudo-reg number REGNO.  */
  1530.  
  1531. void
  1532. mark_home_live (regno)
  1533.      int regno;
  1534. {
  1535.   register int i, lim;
  1536.   i = reg_renumber[regno];
  1537.   if (i < 0)
  1538.     return;
  1539.   lim = i + HARD_REGNO_NREGS (i, PSEUDO_REGNO_MODE (regno));
  1540.   while (i < lim)
  1541.     regs_ever_live[i++] = 1;
  1542. }
  1543.  
  1544. /* Kick all pseudos out of hard register REGNO.
  1545.    If GLOBAL is nonzero, try to find someplace else to put them.
  1546.    If DUMPFILE is nonzero, log actions taken on that file.
  1547.  
  1548.    Return nonzero if any pseudos needed to be kicked out
  1549.    or if this hard reg may appear explicitly in some instructions.  */
  1550.  
  1551. static int
  1552. spill_hard_reg (regno, global, dumpfile)
  1553.      register int regno;
  1554.      int global;
  1555.      FILE *dumpfile;
  1556. {
  1557.   int something_changed = 0;
  1558.   register int i;
  1559.  
  1560.   /* Spill every pseudo reg that was allocated to this reg
  1561.      or to something that overlaps this reg.  */
  1562.  
  1563.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  1564.     if (reg_renumber[i] >= 0
  1565.     && reg_renumber[i] <= regno
  1566.     && (reg_renumber[i] 
  1567.         + HARD_REGNO_NREGS (reg_renumber[i],
  1568.                 PSEUDO_REGNO_MODE (i))
  1569.         > regno))
  1570.       {
  1571.     /* If this register belongs solely to a basic block
  1572.        which needed no spilling, leave it be.  */
  1573.     if (regno != FRAME_POINTER_REGNUM
  1574.         && basic_block_needs
  1575.         && reg_basic_block[i] >= 0
  1576.         && basic_block_needs[reg_basic_block[i]] == 0)
  1577.       continue;
  1578.  
  1579.     /* Mark it as no longer having a hard register home.  */
  1580.     reg_renumber[i] = -1;
  1581.     /* We will need to scan everything again.  */
  1582.     something_changed = 1;
  1583.     if (global)
  1584.       {
  1585.         retry_global_alloc (i, forbidden_regs);
  1586.         /* Update regs_ever_live for new home (if any).  */
  1587.         mark_home_live (i);
  1588.         /* If something gets spilled to the stack,
  1589.            we must have a frame pointer, so spill the frame pointer.  */
  1590.         if (reg_renumber[i] == -1 && ! frame_pointer_needed)
  1591.           {
  1592.         frame_pointer_needed = 1;
  1593.         forbidden_regs[FRAME_POINTER_REGNUM] = 1;
  1594.         spill_hard_reg (FRAME_POINTER_REGNUM, global, dumpfile);
  1595.           }
  1596.       }
  1597.     alter_reg (i, regno);
  1598.     if (dumpfile)
  1599.       {
  1600.         if (reg_renumber[i] == -1)
  1601.           fprintf (dumpfile, " Register %d now on stack.\n\n", i);
  1602.         else
  1603.           fprintf (dumpfile, " Register %d now in %d.\n\n",
  1604.                i, reg_renumber[i]);
  1605.       }
  1606.       }
  1607.  
  1608.   return something_changed || regs_explicitly_used[regno];
  1609. }
  1610.  
  1611. /* Find all paradoxical subregs within X and update reg_max_ref_width.  */
  1612.  
  1613. static rtx
  1614. scan_paradoxical_subregs (x)
  1615.      register rtx x;
  1616. {
  1617.   register int i;
  1618.   register char *fmt;
  1619.   register enum rtx_code code = GET_CODE (x);
  1620.  
  1621.   switch (code)
  1622.     {
  1623.     case CONST_INT:
  1624.     case CONST:
  1625.     case SYMBOL_REF:
  1626.     case LABEL_REF:
  1627.     case CONST_DOUBLE:
  1628.     case CC0:
  1629.     case PC:
  1630.     case REG:
  1631.     case USE:
  1632.     case CLOBBER:
  1633.       return;
  1634.  
  1635.     case SUBREG:
  1636.       if (GET_CODE (SUBREG_REG (x)) == REG
  1637.       && GET_MODE_SIZE (GET_MODE (x)) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
  1638.     reg_max_ref_width[REGNO (SUBREG_REG (x))]
  1639.       = GET_MODE_SIZE (GET_MODE (x));
  1640.       return;
  1641.     }
  1642.  
  1643.   fmt = GET_RTX_FORMAT (code);
  1644.   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
  1645.     {
  1646.       if (fmt[i] == 'e')
  1647.     scan_paradoxical_subregs (XEXP (x, i));
  1648.       else if (fmt[i] == 'E')
  1649.     {
  1650.       register int j;
  1651.       for (j = XVECLEN (x, i) - 1; j >=0; j--)
  1652.         scan_paradoxical_subregs (XVECEXP (x, i, j));
  1653.     }
  1654.     }
  1655. }
  1656.  
  1657. struct hard_reg_n_uses { int regno; int uses; };
  1658.  
  1659. static int
  1660. hard_reg_use_compare (p1, p2)
  1661.      struct hard_reg_n_uses *p1, *p2;
  1662. {
  1663.   int tem = p1->uses - p2->uses;
  1664.   if (tem != 0) return tem;
  1665.   /* If regs are equally good, sort by regno,
  1666.      so that the results of qsort leave nothing to chance.  */
  1667.   return p1->regno - p2->regno;
  1668. }
  1669.  
  1670. /* Choose the order to consider regs for use as reload registers
  1671.    based on how much trouble would be caused by spilling one.
  1672.    Store them in order of decreasing preference in potential_reload_regs.  */
  1673.  
  1674. static void
  1675. order_regs_for_reload ()
  1676. {
  1677.   register int i;
  1678.   register int o = 0;
  1679.   int large = 0;
  1680.  
  1681.   struct hard_reg_n_uses hard_reg_n_uses[FIRST_PSEUDO_REGISTER];
  1682.  
  1683.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1684.     potential_reload_regs[i] = -1;
  1685.  
  1686.   /* Count number of uses of each hard reg by pseudo regs allocated to it
  1687.      and then order them by decreasing use.  */
  1688.  
  1689.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1690.     {
  1691.       hard_reg_n_uses[i].uses = 0;
  1692.       hard_reg_n_uses[i].regno = i;
  1693.     }
  1694.  
  1695.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  1696.     {
  1697.       if (reg_renumber[i] >= 0)
  1698.     hard_reg_n_uses[reg_renumber[i]].uses += reg_n_refs[i];
  1699.       large += reg_n_refs[i];
  1700.     }
  1701.  
  1702.   /* Now fixed registers (which cannot safely be used for reloading)
  1703.      get a very high use count so they will be considered least desirable.
  1704.      Registers used explicitly in the rtl code are almost as bad.  */
  1705.  
  1706.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1707.     {
  1708.       if (fixed_regs[i])
  1709.     hard_reg_n_uses[i].uses += large + 2;
  1710.       else if (regs_explicitly_used[i])
  1711.     hard_reg_n_uses[i].uses += large + 1;
  1712.     }
  1713.   hard_reg_n_uses[FRAME_POINTER_REGNUM].uses += large + 2;
  1714.  
  1715.   qsort (hard_reg_n_uses, FIRST_PSEUDO_REGISTER,
  1716.      sizeof hard_reg_n_uses[0], hard_reg_use_compare);
  1717.  
  1718.   /* Prefer registers not so far used, for use in temporary loading.
  1719.      Among them, prefer registers not preserved by calls.  */
  1720.  
  1721.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1722.     {
  1723. #ifdef REG_ALLOC_ORDER
  1724.       int regno = reg_alloc_order[i];
  1725. #else
  1726.       int regno = i;
  1727. #endif
  1728.       if (regs_ever_live[regno] == 0 && call_used_regs[regno]
  1729.       && ! fixed_regs[regno])
  1730.     potential_reload_regs[o++] = regno;
  1731.     }
  1732.  
  1733.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1734.     {
  1735. #ifdef REG_ALLOC_ORDER
  1736.       int regno = reg_alloc_order[i];
  1737. #else
  1738.       int regno = i;
  1739. #endif
  1740.       if (regs_ever_live[regno] == 0 && ! call_used_regs[regno]
  1741.       && regno != FRAME_POINTER_REGNUM)
  1742.     potential_reload_regs[o++] = regno;
  1743.     }
  1744.  
  1745.   /* Now add the regs that are already used,
  1746.      preferring those used less often.  */
  1747.  
  1748.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1749.     if (regs_ever_live[hard_reg_n_uses[i].regno] != 0)
  1750.       potential_reload_regs[o++] = hard_reg_n_uses[i].regno;
  1751.  
  1752. #if 0
  1753.   /* For regs that are used, don't prefer those not preserved by calls
  1754.      because those are likely to contain high priority things
  1755.      that are live for short periods of time.  */
  1756.  
  1757.   for (i = FIRST_PSEUDO_REGISTER - 1; i >= 0; i--)
  1758.     if (regs_ever_live[i] != 0 && ! call_used_regs[i])
  1759.       potential_reload_regs[o++] = i;
  1760. #endif
  1761. #if defined( DSP96000 )
  1762. /* kludge to cover passing reg-vars bug. */
  1763.   for (i = FIRST_PSEUDO_REGISTER - 1; i >= 0; i--)
  1764.   {
  1765.       if ( 6 > potential_reload_regs[i] )
  1766.       {
  1767.       potential_reload_regs[i] = -1;
  1768.       }
  1769.   }
  1770. #endif
  1771. }
  1772.  
  1773. /* Reload pseudo-registers into hard regs around each insn as needed.
  1774.    Additional register load insns are output before the insn that needs it
  1775.    and perhaps store insns after insns that modify the reloaded pseudo reg.
  1776.  
  1777.    reg_last_reload_reg and reg_reloaded_contents keep track of
  1778.    which pseudo-registers are already available in reload registers.
  1779.    We update these for the reloads that we perform,
  1780.    as the insns are scanned.  */
  1781.  
  1782. static void
  1783. reload_as_needed (first, live_known)
  1784.      rtx first;
  1785.      int live_known;
  1786. {
  1787.   register rtx insn;
  1788.   register int i;
  1789.   int this_block = 0;
  1790.   rtx x;
  1791.  
  1792.   bzero (spill_reg_rtx, sizeof spill_reg_rtx);
  1793.   reg_last_reload_reg = (rtx *) alloca (max_regno * sizeof (rtx));
  1794.   bzero (reg_last_reload_reg, max_regno * sizeof (rtx));
  1795.   reg_has_output_reload = (char *) alloca (max_regno);
  1796.   for (i = 0; i < n_spills; i++)
  1797.     reg_reloaded_contents[i] = -1;
  1798.  
  1799.   for (insn = first; insn;)
  1800.     {
  1801.       register rtx next = NEXT_INSN (insn);
  1802.  
  1803.       /* Notice when we move to a new basic block.  */
  1804.       if (basic_block_needs && this_block + 1 < n_basic_blocks
  1805.       && insn == basic_block_head[this_block+1])
  1806.     ++this_block;
  1807.  
  1808.       if (GET_CODE (insn) == INSN || GET_CODE (insn) == JUMP_INSN
  1809.       || GET_CODE (insn) == CALL_INSN)
  1810.     {
  1811.       /* If insn has no reloads, we want these to be zero, down below.  */
  1812.       bzero (reg_has_output_reload, max_regno);
  1813.       bzero (reg_is_output_reload, FIRST_PSEUDO_REGISTER);
  1814.  
  1815.       if (GET_MODE (insn) == VOIDmode)
  1816.         n_reloads = 0;
  1817.       /* First find the pseudo regs that must be reloaded for this insn.
  1818.          This info is returned in the tables reload_... (see reload.h).
  1819.          Also modify the body of INSN by substituting RELOAD
  1820.          rtx's for those pseudo regs.  */
  1821.       else
  1822.         find_reloads (insn, 1, spill_indirect_ok, live_known, spill_reg_order);
  1823.  
  1824.       if (n_reloads > 0)
  1825.         {
  1826.           /* If this block has not had spilling done,
  1827.          deactivate any optional reloads lest they
  1828.          try to use a spill-reg which isn't available here.
  1829.          If we have any non-optionals that need a spill reg, abort.  */
  1830.           if (basic_block_needs != 0
  1831.           && basic_block_needs[this_block] == 0)
  1832.         {
  1833.           for (i = 0; i < n_reloads; i++)
  1834.             {
  1835.               if (reload_optional[i])
  1836.             reload_in[i] = reload_out[i] = 0;
  1837.               else if (reload_reg_rtx[i] == 0)
  1838.             abort ();
  1839.             }
  1840.         }
  1841.  
  1842.           /* Now compute which reload regs to reload them into.  Perhaps
  1843.          reusing reload regs from previous insns, or else output
  1844.          load insns to reload them.  Maybe output store insns too.
  1845.          Record the choices of reload reg in reload_reg_rtx.  */
  1846.           choose_reload_regs (insn);
  1847.  
  1848.           /* Generate the insns to reload operands into or out of
  1849.          their reload regs.  */
  1850.           emit_reload_insns (insn);
  1851.  
  1852.           /* Substitute the chosen reload regs from reload_reg_rtx
  1853.          into the insn's body (or perhaps into the bodies of other
  1854.          load and store insn that we just made for reloading
  1855.          and that we moved the structure into).  */
  1856.           subst_reloads ();
  1857.         }
  1858.       /* Any previously reloaded spilled pseudo reg, stored in this insn,
  1859.          is no longer validly lying around to save a future reload.
  1860.          Note that this does not detect pseudos that were reloaded
  1861.          for this insn in order to be stored in
  1862.          (obeying register constraints).  That is correct; such reload
  1863.          registers ARE still valid.  */
  1864.       note_stores (PATTERN (insn), forget_old_reloads_1);
  1865.  
  1866.       /* Likewise for regs altered by auto-increment in this insn.
  1867.          But note that the reg-notes are not changed by reloading:
  1868.          they still contain the pseudo-regs, not the spill regs.  */
  1869.       for (x = REG_NOTES (insn); x; x = XEXP (x, 1))
  1870.         if (REG_NOTE_KIND (x) == REG_INC)
  1871.           {
  1872.         /* See if this pseudo reg was reloaded in this insn.
  1873.            If so, its last-reload info is still valid
  1874.            because it is based on this insn's reload.  */
  1875.         for (i = 0; i < n_reloads; i++)
  1876.           if (reload_out[i] == XEXP (x, 0))
  1877.             break;
  1878.  
  1879.         if (i != n_reloads)
  1880.           forget_old_reloads_1 (XEXP (x, 0));
  1881.           }
  1882.     }
  1883.       /* A reload reg's contents are unknown after a label.  */
  1884.       if (GET_CODE (insn) == CODE_LABEL)
  1885.     for (i = 0; i < n_spills; i++)
  1886.       reg_reloaded_contents[i] = -1;
  1887.  
  1888.       /* Don't assume a reload reg is still good after a call insn
  1889.      if it is a call-used reg.  */
  1890.       if (GET_CODE (insn) == CODE_LABEL || GET_CODE (insn) == CALL_INSN)
  1891.     for (i = 0; i < n_spills; i++)
  1892.       if (call_used_regs[spill_regs[i]])
  1893.         reg_reloaded_contents[i] = -1;
  1894.  
  1895.       /* In case registers overlap, allow certain insns to invalidate
  1896.      particular hard registers.  */
  1897.  
  1898. #ifdef INSN_CLOBBERS_REGNO_P
  1899.       for (i = 0 ; i < n_spills ; i++)
  1900.     if (INSN_CLOBBERS_REGNO_P (insn, spill_regs[i]))
  1901.       reg_reloaded_contents[i] = -1;
  1902. #endif
  1903.  
  1904.       insn = next;
  1905.  
  1906. #ifdef USE_C_ALLOCA
  1907.       alloca (0);
  1908. #endif
  1909.     }
  1910. }
  1911.  
  1912. /* Discard all record of any value reloaded from X,
  1913.    or reloaded in X from someplace else;
  1914.    unless X is an output reload reg of the current insn.
  1915.  
  1916.    X may be a hard reg (the reload reg)
  1917.    or it may be a pseudo reg that was reloaded from.
  1918.  
  1919.    This function is not called for instructions generated by reload.  */
  1920.  
  1921. static void
  1922. forget_old_reloads_1 (x)
  1923.      rtx x;
  1924. {
  1925.   register int regno;
  1926.   int nr;
  1927.  
  1928.   if (GET_CODE (x) != REG)
  1929.     return;
  1930.  
  1931.   regno = REGNO (x);
  1932.  
  1933.   if (regno >= FIRST_PSEUDO_REGISTER)
  1934.     nr = 1;
  1935.   else
  1936.     {
  1937.       int i;
  1938.       nr = HARD_REGNO_NREGS (regno, GET_MODE (x));
  1939.       /* Storing into a spilled-reg invalidates its contents.
  1940.      This can happen if a block-local pseudo is allocated to that reg
  1941.      and it wasn't spilled because this block's total need is 0.
  1942.      Then some insn might have an optional reload and use this reg.  */
  1943.       for (i = 0; i < nr; i++)
  1944.     if (spill_reg_order[regno + i] >= 0
  1945.         /* But don't do this if the reg actually serves as an output
  1946.            reload reg in the current instruction.  */
  1947.         && reg_is_output_reload[regno + i] == 0)
  1948.       reg_reloaded_contents[spill_reg_order[regno + i]] = -1;
  1949.     }
  1950.  
  1951.   /* Since value of X has changed,
  1952.      forget any value previously copied from it.  */
  1953.  
  1954.   while (nr-- > 0)
  1955.     /* But don't forget a copy if this is the output reload
  1956.        that establishes the copy's validity.  */
  1957.     if (reg_has_output_reload[regno + nr] == 0)
  1958.       reg_last_reload_reg[regno + nr] = 0;
  1959. }
  1960.  
  1961. /* Comparison function for qsort to decide which of two reloads
  1962.    should be handled first.  *P1 and *P2 are the reload numbers.  */
  1963.  
  1964. static int
  1965. reload_reg_class_lower (p1, p2)
  1966.      short *p1, *p2;
  1967. {
  1968.   register int r1 = *p1, r2 = *p2;
  1969.   register int t;
  1970.   register enum machine_mode mode1, mode2;
  1971.   
  1972.   /* Consider required reloads before optional ones.  */
  1973.   t = reload_optional[r1] - reload_optional[r2];
  1974.   if (t != 0)
  1975.     return t;
  1976.   /* Consider all multi-reg groups first.
  1977.      This is safe because `reload' fills all group-need before
  1978.      filling all non-group need.  */
  1979.   mode1 = (reload_inmode[r1] == VOIDmode ? reload_outmode[r1] : reload_inmode[r1]);
  1980.   mode2 = (reload_inmode[r2] == VOIDmode ? reload_outmode[r2] : reload_inmode[r2]);
  1981.   t = (CLASS_MAX_NREGS (reload_reg_class[r2], mode2)
  1982.        - CLASS_MAX_NREGS (reload_reg_class[r1], mode1));
  1983.   if (t != 0)
  1984.     return t;
  1985.   /* Consider reloads in order of increasing reg-class number.  */
  1986.   t = (int) reload_reg_class[r1] - (int) reload_reg_class[r2];
  1987.   if (t != 0) return t;
  1988.   /* If reloads are equally urgent, sort by reload number,
  1989.      so that the results of qsort leave nothing to chance.  */
  1990.   return r1 - r2;
  1991. }
  1992.  
  1993. /* The following tables are indexed by register number,
  1994.    not by spill_regs index.  */
  1995.  
  1996. /* 1 if reg is in use as a reload reg for a RELOAD_OTHER reload.  */
  1997. static char reload_reg_in_use[FIRST_PSEUDO_REGISTER];
  1998. /* 1 if reg is in use for a RELOAD_FOR_INPUT_RELOAD_ADDRESS reload.  */
  1999. static char reload_reg_in_use_for_inputs[FIRST_PSEUDO_REGISTER];
  2000. /* 1 if reg is in use for a RELOAD_FOR_OUTPUT_RELOAD_ADDRESS reload.  */
  2001. static char reload_reg_in_use_for_outputs[FIRST_PSEUDO_REGISTER];
  2002. /* 1 if reg is in use for a RELOAD_FOR_OPERAND_ADDRESS reload.  */
  2003. static char reload_reg_in_use_for_operands[FIRST_PSEUDO_REGISTER];
  2004.  
  2005. /* 1 if reg is in use as a reload reg for any sort of reload.  */
  2006. static char reload_reg_in_use_at_all[FIRST_PSEUDO_REGISTER];
  2007.  
  2008. /* Mark reg REGNO as in use for a reload of the sort spec'd by WHEN_NEEDED.  */
  2009.  
  2010. static void
  2011. mark_reload_reg_in_use (regno, when_needed)
  2012.      int regno;
  2013.      enum reload_when_needed when_needed;
  2014. {
  2015.   switch (when_needed)
  2016.     {
  2017.     case RELOAD_OTHER:
  2018.       reload_reg_in_use[regno] = 1;
  2019.       break;
  2020.  
  2021.     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
  2022.       reload_reg_in_use_for_inputs[regno] = 1;
  2023.       break;
  2024.  
  2025.     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
  2026.       reload_reg_in_use_for_outputs[regno] = 1;
  2027.       break;
  2028.  
  2029.     case RELOAD_FOR_OPERAND_ADDRESS:
  2030.       reload_reg_in_use_for_operands[regno] = 1;
  2031.       break;
  2032.     }
  2033.   reload_reg_in_use_at_all[regno] = 1;
  2034. }
  2035.  
  2036. /* 1 if reg REGNO is free as a reload reg for a reload of the sort
  2037.    specified by WHEN_NEEDED.  */
  2038.  
  2039. static int
  2040. reload_reg_free_p (regno, when_needed)
  2041.      int regno;
  2042.      enum reload_when_needed when_needed;
  2043. {
  2044.   /* In use for a RELOAD_OTHER means it's not available for anything.  */
  2045.   if (reload_reg_in_use[regno])
  2046.     return 0;
  2047.   switch (when_needed)
  2048.     {
  2049.     case RELOAD_OTHER:
  2050.       /* In use for anything means not available for a RELOAD_OTHER.  */
  2051.       return ! reload_reg_in_use_at_all[regno];
  2052.  
  2053.       /* The other three kinds of use can share a register.  */
  2054.     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
  2055.       return ! reload_reg_in_use_for_inputs[regno];
  2056.     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
  2057.       return ! reload_reg_in_use_for_outputs[regno];
  2058.     case RELOAD_FOR_OPERAND_ADDRESS:
  2059.       return ! reload_reg_in_use_for_operands[regno];
  2060.     }
  2061. }
  2062.  
  2063. /* Return 1 if the value in reload reg REGNO, as used by a reload
  2064.    needed for the part of the insn specified by WHEN_NEEDED,
  2065.    is not in use for a reload in any prior part of the insn.  */
  2066.  
  2067. static int
  2068. reload_reg_free_before_p (regno, when_needed)
  2069.      int regno;
  2070.      enum reload_when_needed when_needed;
  2071. {
  2072.   switch (when_needed)
  2073.     {
  2074.     case RELOAD_OTHER:
  2075.       /* Since a RELOAD_OTHER reload claims the reg for the entire insn,
  2076.      its use starts from the beginning, so nothing can use it earlier.  */
  2077.       return 1;
  2078.  
  2079.       /* If this use is for part of the insn,
  2080.      check the reg is not in use for any prior part.  */
  2081.     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
  2082.       if (reload_reg_in_use_for_operands[regno])
  2083.     return 0;
  2084.     case RELOAD_FOR_OPERAND_ADDRESS:
  2085.       if (reload_reg_in_use_for_inputs[regno])
  2086.     return 0;
  2087.     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
  2088.       return 1;
  2089.     }
  2090. }
  2091.  
  2092. /* Return 1 if the value in reload reg REGNO, as used by a reload
  2093.    needed for the part of the insn specified by WHEN_NEEDED,
  2094.    is still available in REGNO at the end of the insn.  */
  2095.  
  2096. static int
  2097. reload_reg_reaches_end_p (regno, when_needed)
  2098.      int regno;
  2099.      enum reload_when_needed when_needed;
  2100. {
  2101.   switch (when_needed)
  2102.     {
  2103.     case RELOAD_OTHER:
  2104.       /* Since a RELOAD_OTHER reload claims the reg for the entire insn,
  2105.      its value must reach the end.  */
  2106.       return 1;
  2107.  
  2108.       /* If this use is for part of the insn,
  2109.      its value reaches if no subsequent part uses the same register.  */
  2110.     case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
  2111.       if (reload_reg_in_use_for_operands[regno])
  2112.     return 0;
  2113.     case RELOAD_FOR_OPERAND_ADDRESS:
  2114.       if (reload_reg_in_use_for_outputs[regno])
  2115.     return 0;
  2116.     case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
  2117.       return 1;
  2118.     }
  2119. }
  2120.  
  2121. /* Vector of reload-numbers showing the order in which the reloads should
  2122.    be processed.  */
  2123. short reload_order[MAX_RELOADS];
  2124.  
  2125. /* Indexed by reload number, 1 if incoming value
  2126.    inherited from previous insns.  */
  2127. char reload_inherited[MAX_RELOADS];
  2128.  
  2129. /* If non-zero, this is a place to get the value of the reload,
  2130.    rather than using reload_in.  */
  2131. rtx reload_override_in[MAX_RELOADS];
  2132.  
  2133. /* For each reload, the index in spill_regs of the spill register used,
  2134.    or -1 if we did not need one of the spill registers for this reload.  */
  2135. int reload_spill_index[MAX_RELOADS];
  2136.  
  2137. /* Assign hard reg targets for the pseudo-registers we must reload
  2138.    into hard regs for this insn.
  2139.    Also output the instructions to copy them in and out of the hard regs.
  2140.  
  2141.    For machines with register classes, we are responsible for
  2142.    finding a reload reg in the proper class.  */
  2143.  
  2144. static void
  2145. choose_reload_regs (insn)
  2146.      rtx insn;
  2147. {
  2148.   register int j;
  2149.   int have_groups = 0;
  2150.   /* Non-zero means we must reuse spill regs for multiple reloads in this insn
  2151.      or we will not have enough spill regs.  */
  2152.   int must_reuse = 0;
  2153.   rtx original_reload_reg_rtx[MAX_RELOADS];
  2154.  
  2155.   /* See if we have more mandatory reloads than spill regs.
  2156.      If so, then we cannot risk optimizations that could prevent
  2157.      reloads from sharing one spill register.  */
  2158.  
  2159.   {
  2160.     int tem = 0;
  2161.     for (j = 0; j < n_reloads; j++)
  2162.       if (! reload_optional[j] && reload_reg_rtx[j] == 0)
  2163.     tem++;
  2164.     if (tem > n_spills)
  2165.       must_reuse = 1;
  2166.   }
  2167.  
  2168.   bcopy (reload_reg_rtx, original_reload_reg_rtx, sizeof (reload_reg_rtx));
  2169.  
  2170.   /* If we fail to get enough regs without must_reuse,
  2171.      set must_reuse and jump back here.  */
  2172.  retry:
  2173.   bzero (reload_inherited, MAX_RELOADS);
  2174.   bzero (reload_override_in, MAX_RELOADS * sizeof (rtx));
  2175.   bzero (reload_reg_in_use, FIRST_PSEUDO_REGISTER);
  2176.   bzero (reload_reg_in_use_at_all, FIRST_PSEUDO_REGISTER);
  2177.   bzero (reload_reg_in_use_for_inputs, FIRST_PSEUDO_REGISTER);
  2178.   bzero (reload_reg_in_use_for_outputs, FIRST_PSEUDO_REGISTER);
  2179.   bzero (reload_reg_in_use_for_operands, FIRST_PSEUDO_REGISTER);
  2180.  
  2181.   /* In order to be certain of getting the registers we need,
  2182.      we must sort the reloads into order of increasing register class.
  2183.      Then our grabbing of reload registers will parallel the process
  2184.      that provided the reload registers.  */
  2185.  
  2186.   /* Also note whether any of the reloads wants a consecutive group of regs.
  2187.      When that happens, we must when processing the non-group reloads
  2188.      avoid (when possible) using a reload reg that would break up a group.  */
  2189.  
  2190.   /* This used to look for an existing reloaded home for all
  2191.      of the reloads, and only then perform any new reloads.
  2192.      But that could lose if the reloads were done out of reg-class order
  2193.      because a later reload with a looser constraint might have an old
  2194.      home in a register needed by an earlier reload with a tighter constraint.
  2195.      It would be possible with even hairier code to detect such cases
  2196.      and handle them, but it doesn't seem worth while yet.  */
  2197.  
  2198.   for (j = 0; j < n_reloads; j++)
  2199.     {
  2200.       enum machine_mode mode;
  2201.       reload_order[j] = j;
  2202.       reload_spill_index[j] = -1;
  2203.       mode = (reload_inmode[j] == VOIDmode
  2204.           || GET_MODE_SIZE (reload_outmode[j]) > GET_MODE_SIZE (reload_inmode[j])
  2205.           ? reload_outmode[j] : reload_inmode[j]);
  2206. #if defined( DSP96000 ) || defined( DSP56000 )
  2207.       /* we ran into the same problem in reload.c. MODE_SIZE, because all
  2208.      integral type occupy one memory word, does *not* create a size based
  2209.      ordering on modes. the 56k should be ok for now. (except in l mode )*/
  2210.       if (( VOIDmode == reload_inmode[j] ) ||
  2211.       ( reload_outmode[j] >  reload_inmode[j] ))
  2212.     {
  2213.       mode = reload_outmode[j];
  2214.     }
  2215.       else
  2216.     {
  2217.       mode = reload_inmode[j];
  2218.     }
  2219. #endif
  2220.  
  2221.       if (CLASS_MAX_NREGS (reload_reg_class[j], mode) > 1)
  2222.     have_groups = 1;
  2223.       /* If we have already decided to use a certain register,
  2224.      don't use it in another way.  */
  2225.       if (reload_reg_rtx[j])
  2226.     mark_reload_reg_in_use (REGNO (reload_reg_rtx[j]), reload_when_needed[j]);
  2227.     }
  2228.  
  2229.   if (n_reloads > 1)
  2230.     qsort (reload_order, n_reloads, sizeof (short), reload_reg_class_lower);
  2231.  
  2232.   for (j = 0; j < n_reloads; j++)
  2233.     {
  2234.       register int r = reload_order[j];
  2235.       register int i;
  2236.       register rtx new;
  2237.       enum machine_mode reload_mode = reload_inmode[r];
  2238.       int h1_ok, h2_ok, h3_ok;
  2239.  
  2240.       /* Ignore reloads that got marked inoperative.  */
  2241.       if (reload_out[r] == 0 && reload_in[r] == 0)
  2242.     continue;
  2243.  
  2244. #if defined( DSP96000 ) || defined( DSP56000 )
  2245.       /* again, MODE_SIZE isn't useful as an ordering. */
  2246.       if ( reload_outmode[r] > reload_mode )
  2247.     {
  2248.       reload_mode = reload_outmode[r];
  2249.     }
  2250. #else
  2251.       if (GET_MODE_SIZE (reload_outmode[r]) > GET_MODE_SIZE (reload_mode))
  2252.     reload_mode = reload_outmode[r];
  2253. #endif
  2254.       if (reload_strict_low[r])
  2255.     reload_mode = GET_MODE (SUBREG_REG (reload_out[r]));
  2256.  
  2257.       /* No need to find a reload-register if find_reloads chose one.  */
  2258.  
  2259.       if (reload_reg_rtx[r] != 0)
  2260.     continue;
  2261.  
  2262.       /* First see if this pseudo is already available as reloaded
  2263.      for a previous insn.
  2264.      This feature is disabled for multi-register groups
  2265.      because we haven't yet any way to tell whether the entire
  2266.      value is properly preserved.
  2267.      It is also disabled when there are other reloads for mult-register
  2268.      groups, lest the inherited reload reg break up a needed group.  */
  2269.  
  2270.       {
  2271.     register int regno = -1;
  2272.  
  2273.     if (reload_in[r] == 0)
  2274.       ;
  2275.     else if (GET_CODE (reload_in[r]) == REG)
  2276.       regno = REGNO (reload_in[r]);
  2277.     else if (GET_CODE (reload_in_reg[r]) == REG)
  2278.       regno = REGNO (reload_in_reg[r]);
  2279. #if 0
  2280.     /* This won't work, since REGNO can be a pseudo reg number.
  2281.        Also, it takes much more hair to keep track of all the things
  2282.        that can invalidate an inherited reload of part of a pseudoreg.  */
  2283.     else if (GET_CODE (reload_in[r]) == SUBREG
  2284.          && GET_CODE (SUBREG_REG (reload_in[r])) == REG)
  2285.       regno = REGNO (SUBREG_REG (reload_in[r])) + SUBREG_WORD (reload_in[r]);
  2286. #endif
  2287.  
  2288.     if (regno >= 0
  2289.         && reg_last_reload_reg[regno] != 0
  2290.         && ! have_groups
  2291.         /* See comment at next use of must_reuse.  */
  2292.         && ! must_reuse)
  2293.       {
  2294.         i = spill_reg_order[REGNO (reg_last_reload_reg[regno])];
  2295.  
  2296.         if (reg_reloaded_contents[i] == regno
  2297.         && HARD_REGNO_MODE_OK (spill_regs[i], reload_mode)
  2298.         && TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[r]],
  2299.                       spill_regs[i])
  2300.         && reload_reg_free_p (spill_regs[i], reload_when_needed[r])
  2301.         && reload_reg_free_before_p (spill_regs[i],
  2302.                          reload_when_needed[r]))
  2303.           {
  2304.         /* Mark the register as in use for this part of the insn.  */
  2305.         mark_reload_reg_in_use (spill_regs[i], reload_when_needed[r]);
  2306.         reload_reg_rtx[r] = reg_last_reload_reg[regno];
  2307.         reload_inherited[r] = 1;
  2308.         reload_spill_index[r] = i;
  2309.           }
  2310.       }
  2311.       }
  2312.  
  2313.       /* Here's another way to see if the value is already lying around.  */
  2314.       if (reload_in[r] != 0
  2315.       && reload_reg_rtx[r] == 0
  2316.       && reload_out[r] == 0
  2317.       && (CONSTANT_P (reload_in[r])
  2318.           || GET_CODE (reload_in[r]) == PLUS
  2319.           || GET_CODE (reload_in[r]) == REG
  2320.           || GET_CODE (reload_in[r]) == MEM)
  2321.       && ! have_groups
  2322.       /* This optimization can prevent this reload from reusing
  2323.          a spill reg used for another reload.  That could take away
  2324.          a spill reg that another reload will need.  If we cannot
  2325.          be sure there will still be enough spill regs,
  2326.          don't do this optimization.  */
  2327.       && ! must_reuse)
  2328.     {
  2329.       register rtx equiv
  2330.         = find_equiv_reg (reload_in[r], insn, reload_reg_class[r],
  2331.                   -1, 0, 0, reload_mode);
  2332.       int regno;
  2333.  
  2334.       if (equiv != 0)
  2335.         regno = REGNO (equiv);
  2336.  
  2337.       /* If we found a spill reg, reject it unless it is free
  2338.          and of the desired class.  */
  2339.       if (equiv != 0 && GET_CODE (equiv) == REG
  2340.           && spill_reg_order[regno] >= 0
  2341.           && reload_reg_free_before_p (regno, reload_when_needed[r]))
  2342.         {
  2343.           if (! TEST_HARD_REG_BIT (reg_class_contents[(int) reload_reg_class[r]],
  2344.                        regno))
  2345.         equiv = 0;
  2346.         }
  2347.  
  2348.       if (equiv != 0 && reload_reg_in_use_at_all[regno])
  2349.         equiv = 0;
  2350.  
  2351.       if (equiv != 0 && ! HARD_REGNO_MODE_OK (regno, reload_mode))
  2352.         equiv = 0;
  2353.  
  2354.       /* We found a register that contains the value we need.
  2355.          If this register is the same as an `earlyclobber' operand
  2356.          of the current insn, just mark it as a place to reload from
  2357.          since we can't use it as the reload register itself.  */
  2358.  
  2359.       if (equiv != 0)
  2360.         for (i = 0; i < n_earlyclobbers; i++)
  2361.           if (reg_overlap_mentioned_p (equiv, reload_earlyclobbers[i]))
  2362.         {
  2363.           reload_override_in[r] = equiv;
  2364.           equiv = 0;
  2365.           break;
  2366.         }
  2367.  
  2368.       /* If we found an equivalent reg, say no code need be generated
  2369.          to load it, and use it as our reload reg.  */
  2370.       if (equiv != 0
  2371.           && REGNO (equiv) != FRAME_POINTER_REGNUM)
  2372.         {
  2373.           reload_reg_rtx[r] = equiv;
  2374.           reload_inherited[r] = 1;
  2375.           /* If it is a spill reg,
  2376.          mark the spill reg as in use for this insn.  */
  2377.           i = spill_reg_order[REGNO (equiv)];
  2378.           if (i >= 0)
  2379.         {
  2380.           int nr = HARD_REGNO_NREGS (spill_regs[i], reload_mode);
  2381.           while (nr > 0)
  2382.             mark_reload_reg_in_use (REGNO (equiv) + --nr,
  2383.                         reload_when_needed[r]);
  2384.         }
  2385.         }
  2386.     }
  2387.  
  2388.       /* If it isn't lying around, and isn't optional,
  2389.      find a place to reload it into.  */
  2390.       if (reload_reg_rtx[r] != 0 || reload_optional[r] != 0)
  2391.     continue;
  2392.  
  2393.       /* Value not lying around; find a register to reload it into.
  2394.      Here I is not a regno, it is an index into spill_regs.  */
  2395.       i = n_spills;
  2396.  
  2397. #if 0
  2398.       /* The following is no longer needed now that all multi-register
  2399.      (group) reloads are processed before all solitary register reloads
  2400.      (due to changes in `reg_class_lower_p' and `reload'.  */
  2401.       /* The following also fails to test HARD_REGNO_MODE_OK appropriately,
  2402.      which was hard to fix because we don't know the mode that the
  2403.      group might have that would want this register.  */
  2404.  
  2405.       /* If we want just one reg, and other reloads want groups,
  2406.      first try to find a reg that can't be part of a group.  */
  2407.       if (have_groups
  2408.       && CLASS_MAX_NREGS (reload_reg_class[r], reload_mode) == 1)
  2409.     for (i = 0; i < n_spills; i++)
  2410.       {
  2411.         int regno = spill_regs[i];
  2412.         int class = (int) reload_reg_class[r];
  2413.         if (reload_reg_in_use_at_all[regno] == 0
  2414.         && TEST_HARD_REG_BIT (reg_class_contents[class],
  2415.                       regno)
  2416.         && !(regno + 1 < FIRST_PSEUDO_REGISTER
  2417.              && spill_reg_order[regno + 1] >= 0
  2418.              && reload_reg_in_use_at_all[regno + 1] == 0
  2419.              && TEST_HARD_REG_BIT (reg_class_contents[class],
  2420.                        regno + 1))
  2421.         && !(regno > 0
  2422.              && spill_reg_order[regno - 1] >= 0
  2423.              && reload_reg_in_use_at_all[regno - 1] == 0
  2424.              && TEST_HARD_REG_BIT (reg_class_contents[class],
  2425.                        regno - 1)))
  2426.           break;
  2427.       }
  2428.  
  2429.       /* If that didn't work, try to find a register that has only one
  2430.      neighbor that could make a group with it.  That way, if the
  2431.      available registers are three consecutive ones, we avoid taking
  2432.      the middle one (which would leave us with no possible groups).  */
  2433.  
  2434.       if (have_groups
  2435.       && CLASS_MAX_NREGS (reload_reg_class[r], reload_mode) == 1
  2436.       && i == n_spills)
  2437.     for (i = 0; i < n_spills; i++)
  2438.       {
  2439.         int regno = spill_regs[i];
  2440.         int class = (int) reload_reg_class[r];
  2441.         if (reload_reg_in_use_at_all[regno] == 0
  2442.         && TEST_HARD_REG_BIT (reg_class_contents[class],
  2443.                       regno)
  2444.         && (!(regno + 1 < FIRST_PSEUDO_REGISTER
  2445.               && spill_reg_order[regno + 1] >= 0
  2446.               && reload_reg_in_use_at_all[regno + 1] == 0
  2447.               && TEST_HARD_REG_BIT (reg_class_contents[class],
  2448.                         regno + 1))
  2449.             || !(regno > 0
  2450.              && spill_reg_order[regno - 1] >= 0
  2451.              && reload_reg_in_use_at_all[regno - 1] == 0
  2452.              && TEST_HARD_REG_BIT (reg_class_contents[class],
  2453.                            regno - 1))))
  2454.           break;
  2455.       }
  2456. #endif
  2457.  
  2458.       /* Now, if we want a single register and haven't yet found one,
  2459.      take any reg in the right class and not in use.
  2460.      If we want a consecutive group, here is where we look for it.  */
  2461.       if (i == n_spills)
  2462.     {
  2463.       int pass;
  2464.       /* If we put this reload ahead, thinking it is a group,
  2465.          then insist on finding a group.  Otherwise we can grab a
  2466.          reg that some other reload needs. 
  2467.          (That can happen when we have a 68000 DATA_OR_FP_REG
  2468.          which is a group of data regs or one fp reg.)
  2469.          ??? Really it would be nicer to have smarter handling
  2470.          for that kind of reg class, where a problem like this is normal.
  2471.          Perhaps those classes should be avoided for reloading
  2472.          by use of more alternatives.  */
  2473.       int force_group
  2474.         = (CLASS_MAX_NREGS (reload_reg_class[r], reload_mode) > 1);
  2475.       /* We need not be so restrictive if there are no more reloads
  2476.          for this insn.  */
  2477.       if (j + 1 == n_reloads)
  2478.         force_group = 0;
  2479.  
  2480.       for (pass = 0; pass < 2; pass++)
  2481.         {
  2482.           for (i = 0; i < n_spills; i++)
  2483.         {
  2484.           int class = (int) reload_reg_class[r];
  2485.           if (reload_reg_free_p (spill_regs[i], reload_when_needed[r])
  2486.               && TEST_HARD_REG_BIT (reg_class_contents[class],
  2487.                         spill_regs[i])
  2488.               /* Look first for regs to share, then for unshared.  */
  2489.               && (pass || reload_reg_in_use_at_all[spill_regs[i]]))
  2490.             {
  2491.               int nr = HARD_REGNO_NREGS (spill_regs[i], reload_mode);
  2492.               /* Avoid the problem where spilling a GENERAL_OR_FP_REG
  2493.              (on 68000) got us two FP regs.  If NR is 1,
  2494.              we would reject both of them.  */
  2495.               if (force_group)
  2496.             nr = CLASS_MAX_NREGS (reload_reg_class[r], reload_mode);
  2497.               /* If we need only one reg, we have already won.  */
  2498.               if (nr == 1)
  2499.             {
  2500.               /* But reject a single reg if we demand a group.  */
  2501.               if (force_group)
  2502.                 continue;
  2503.               break;
  2504.             }
  2505.               /* Otherwise check that as many consecutive regs as we need
  2506.              are available here.
  2507.              Also, don't use for a group registers that are
  2508.              needed for nongroups.  */
  2509.               if (HARD_REGNO_MODE_OK (spill_regs[i], reload_mode)
  2510.               && ! counted_for_nongroups[spill_regs[i]])
  2511.             while (nr > 1)
  2512.               {
  2513.                 int regno = spill_regs[i] + nr - 1;
  2514.                 if (!(TEST_HARD_REG_BIT (reg_class_contents[class],
  2515.                              regno)
  2516.                   && spill_reg_order[regno] >= 0
  2517.                   && reload_reg_free_p (regno, reload_when_needed[r])
  2518.                   && ! counted_for_nongroups[regno]))
  2519.                   break;
  2520.                 nr--;
  2521.               }
  2522.               if (nr == 1)
  2523.             break;
  2524.             }
  2525.         }
  2526.           /* If find something on pass 1, omit pass 2.  */
  2527.           if (i < n_spills)
  2528.         break;
  2529.         }
  2530.     }
  2531.  
  2532.       /* We should have found a spill register by now.  */
  2533.       if (i == n_spills)
  2534.     {
  2535.       if (must_reuse)
  2536.         abort ();
  2537.       bcopy (original_reload_reg_rtx, reload_reg_rtx, sizeof (reload_reg_rtx));
  2538.       must_reuse = 1;
  2539.       goto retry;
  2540.     }
  2541.  
  2542.       /* Mark as in use for this insn the reload regs we use for this.  */
  2543.       {
  2544.     int nr = HARD_REGNO_NREGS (spill_regs[i], reload_mode);
  2545.     while (nr > 0)
  2546.       {
  2547.         mark_reload_reg_in_use (spill_regs[i] + --nr,
  2548.                     reload_when_needed[r]);
  2549.         reg_reloaded_contents[spill_reg_order[spill_regs[i] + nr]] = -1;
  2550.       }
  2551.       }
  2552.  
  2553.       new = spill_reg_rtx[i];
  2554.  
  2555.       if (new == 0 || GET_MODE (new) != reload_mode)
  2556.     spill_reg_rtx[i] = new = gen_rtx (REG, reload_mode, spill_regs[i]);
  2557.  
  2558.       reload_reg_rtx[r] = new;
  2559.       reload_spill_index[r] = i;
  2560.  
  2561.       /* Detect when the reload reg can't hold the reload mode.
  2562.      This used to be one `if', but Sequent compiler can't handle that.  */
  2563.       if (HARD_REGNO_MODE_OK (REGNO (reload_reg_rtx[r]), reload_mode))
  2564.     if (! (reload_in[r] != 0
  2565.            && ! HARD_REGNO_MODE_OK (REGNO (reload_reg_rtx[r]),
  2566.                     GET_MODE (reload_in[r]))))
  2567.       if (! (reload_out[r] != 0
  2568.          && ! HARD_REGNO_MODE_OK (REGNO (reload_reg_rtx[r]),
  2569.                       GET_MODE (reload_out[r]))))
  2570.         /* The reg is OK.  */
  2571.         continue;
  2572.  
  2573.       /* The reg is not OK.  */
  2574.       {
  2575.     if (asm_noperands (PATTERN (insn)) < 0)
  2576.       /* It's the compiler's fault.  */
  2577.       abort ();
  2578.     /* It's the user's fault; the operand's mode and constraint
  2579.        don't match.  Disable this reload so we don't crash in final.  */
  2580.     error_for_asm (insn,
  2581.                "`asm' operand constraint incompatible with operand size");
  2582.     reload_in[r] = 0;
  2583.     reload_out[r] = 0;
  2584.     reload_reg_rtx[r] = 0;
  2585.     reload_optional[r] = 1;
  2586.       }
  2587.     }
  2588.  
  2589.   /* If we thought we could inherit a reload, because it seemed that
  2590.      nothing else wanted the same reload register earlier in the insn,
  2591.      verify that assumption, now that all reloads have been assigned.  */
  2592.  
  2593.   for (j = 0; j < n_reloads; j++)
  2594.     {
  2595.       register int r = reload_order[j];
  2596.  
  2597.       if (reload_inherited[r] && reload_reg_rtx[r] != 0
  2598.       && ! reload_reg_free_before_p (REGNO (reload_reg_rtx[r]),
  2599.                      reload_when_needed[r]))
  2600.     reload_inherited[r] = 0;
  2601.  
  2602.       /* If we found a better place to reload from,
  2603.      validate it in the same fashion, if it is a reload reg.  */
  2604.       if (reload_override_in[r]
  2605.       && GET_CODE (reload_override_in[r]) == REG
  2606.       && spill_reg_order[REGNO (reload_override_in[r])] >= 0
  2607.       && ! reload_reg_free_before_p (REGNO (reload_override_in[r]),
  2608.                      reload_when_needed[r]))
  2609.     reload_override_in[r] = 0;
  2610.     }
  2611.  
  2612.   /* Now that reload_override_in is known valid,
  2613.      actually override reload_in.  */
  2614.   for (j = 0; j < n_reloads; j++)
  2615.     if (reload_override_in[j])
  2616.       reload_in[j] = reload_override_in[j];
  2617.  
  2618.   /* For all the spill regs newly reloaded in this instruction,
  2619.      record what they were reloaded from, so subsequent instructions
  2620.      can inherit the reloads.  */
  2621.  
  2622.   for (j = 0; j < n_reloads; j++)
  2623.     {
  2624.       register int r = reload_order[j];
  2625.       register int i = reload_spill_index[r];
  2626.  
  2627.       /* I is nonneg if this reload used one of the spill regs.
  2628.      If reload_reg_rtx[r] is 0, this is an optional reload
  2629.      that we opted to ignore.  */
  2630.       if (i >= 0 && reload_reg_rtx[r] != 0)
  2631.     {
  2632.       /* Maybe the spill reg contains a copy of reload_out.  */
  2633.       if (reload_out[r] != 0 && GET_CODE (reload_out[r]) == REG)
  2634.         {
  2635.           register int nregno = REGNO (reload_out[r]);
  2636.           reg_last_reload_reg[nregno] = reload_reg_rtx[r];
  2637.           reg_reloaded_contents[i] = nregno;
  2638.           reg_has_output_reload[nregno] = 1;
  2639.           reg_is_output_reload[spill_regs[i]] = 1;
  2640.           if (reload_when_needed[r] != RELOAD_OTHER)
  2641.         abort ();
  2642.         }
  2643.       /* Maybe the spill reg contains a copy of reload_in.  */
  2644.       else if (reload_out[r] == 0
  2645.            && (GET_CODE (reload_in[r]) == REG
  2646.                || GET_CODE (reload_in_reg[r]) == REG))
  2647.         {
  2648.           register int nregno;
  2649.           if (GET_CODE (reload_in[r]) == REG)
  2650.         nregno = REGNO (reload_in[r]);
  2651.           else
  2652.         nregno = REGNO (reload_in_reg[r]);
  2653.  
  2654.           /* If there are two separate reloads (one in and one out)
  2655.          for the same (hard or pseudo) reg,
  2656.          leave reg_last_reload_reg set 
  2657.          based on the output reload.
  2658.          Otherwise, set it from this input reload.  */
  2659.           if (!reg_has_output_reload[nregno])
  2660.         {
  2661.           reg_last_reload_reg[nregno] = reload_reg_rtx[r];
  2662.           reg_reloaded_contents[i] = nregno;
  2663.  
  2664.           /* But don't do so if another input reload
  2665.              will clobber this one's value.  */
  2666.           if (! reload_reg_reaches_end_p (spill_regs[i],
  2667.                           reload_when_needed[r]))
  2668.             reg_reloaded_contents[i] = -1;
  2669.         }
  2670.         }
  2671.       /* Otherwise, the spill reg doesn't contain a copy of any reg.
  2672.          Clear out its records, lest it be taken for a copy
  2673.          of reload_in when that is no longer true.  */
  2674.       else
  2675.         reg_reloaded_contents[i] = -1;
  2676.     }
  2677.  
  2678.       /* The following if-statement was #if 0'd in 1.34 (or before...).
  2679.      It's reenabled in 1.35 because supposedly nothing else
  2680.      deals with this problem.  */
  2681.  
  2682.       /* If a register gets output-reloaded from a non-spill register,
  2683.      that invalidates any previous reloaded copy of it.
  2684.      But forget_old_reloads_1 won't get to see it, because
  2685.      it thinks only about the original insn.  So invalidate it here.  */
  2686.       if (i < 0 && reload_out[r] != 0 && GET_CODE (reload_out[r]) == REG)
  2687.     {
  2688.       register int nregno = REGNO (reload_out[r]);
  2689.       reg_last_reload_reg[nregno] = 0;
  2690.       reg_has_output_reload[nregno] = 1;
  2691.     }
  2692.     }
  2693. }
  2694.  
  2695. /* Output insns to reload values in and out of the chosen reload regs.  */
  2696.  
  2697. static void
  2698. emit_reload_insns (insn)
  2699.      rtx insn;
  2700. {
  2701.   register int j;
  2702.   rtx first_output_reload_insn = NEXT_INSN (insn);
  2703.   rtx first_other_reload_insn = insn;
  2704.   rtx first_operand_address_reload_insn = insn;
  2705.   int special;
  2706.  
  2707.   /* Now output the instructions to copy the data into and out of the
  2708.      reload registers.  Do these in the order that the reloads were reported,
  2709.      since reloads of base and index registers precede reloads of operands
  2710.      and the operands may need the base and index registers reloaded.  */
  2711.  
  2712.   for (j = 0; j < n_reloads; j++)
  2713.     {
  2714.       register rtx old;
  2715.       rtx store_insn;
  2716.  
  2717.       old = reload_in[j];
  2718.       if (old != 0 && ! reload_inherited[j]
  2719.       && reload_reg_rtx[j] != old
  2720.       && reload_reg_rtx[j] != 0)
  2721.     {
  2722.       register rtx reloadreg = reload_reg_rtx[j];
  2723.       rtx oldequiv = 0;
  2724.       enum machine_mode mode;
  2725.       rtx where;
  2726.       rtx this_reload_insn = 0;
  2727.  
  2728. #if 0
  2729.       /* No longer done because these paradoxical subregs now occur
  2730.          only for regs and for spilled stack slots, and in either case
  2731.          we can safely reload in the nominal machine mode.  */
  2732.  
  2733.       /* Strip off of OLD any size-increasing SUBREGs such as
  2734.          (SUBREG:SI foo:QI 0).  */
  2735.  
  2736.       while (GET_CODE (old) == SUBREG && SUBREG_WORD (old) == 0
  2737.          && (GET_MODE_SIZE (GET_MODE (old))
  2738.              > GET_MODE_SIZE (GET_MODE (SUBREG_REG (old)))))
  2739.         old = SUBREG_REG (old);
  2740. #endif
  2741.  
  2742.       /* Determine the mode to reload in.
  2743.          This is very tricky because we have three to choose from.
  2744.          There is the mode the insn operand wants (reload_inmode[J]).
  2745.          There is the mode of the reload register RELOADREG.
  2746.          There is the intrinsic mode of the operand, which we could find
  2747.          by stripping some SUBREGs.
  2748.          It turns out that RELOADREG's mode is irrelevant:
  2749.          we can change that arbitrarily.
  2750.  
  2751.          Consider (SUBREG:SI foo:QI) as an operand that must be SImode;
  2752.          then the reload reg may not support QImode moves, so use SImode.
  2753.          If foo is in memory due to spilling a pseudo reg, this is safe,
  2754.          because the QImode value is in the least significant part of a
  2755.          slot big enough for a SImode.  If foo is some other sort of
  2756.          memory reference, then it is impossible to reload this case,
  2757.          so previous passes had better make sure this never happens.
  2758.  
  2759.          Then consider a one-word union which has SImode and one of its
  2760.          members is a float, being fetched as (SUBREG:SF union:SI).
  2761.          We must fetch that as SFmode because we could be loading into
  2762.          a float-only register.  In this case OLD's mode is correct.
  2763.  
  2764.          Consider an immediate integer: it has VOIDmode.  Here we need
  2765.          to get a mode from something else.
  2766.  
  2767.          In some cases, there is a fourth mode, the operand's
  2768.          containing mode.  If the insn specifies a containing mode for
  2769.          this operand, it overrides all others.
  2770.  
  2771.          I am not sure whether the algorithm here is always right,
  2772.          but it does the right things in those cases.  */
  2773.  
  2774.       mode = GET_MODE (old);
  2775.       if (mode == VOIDmode)
  2776.         mode = reload_inmode[j];
  2777.       if (reload_strict_low[j])
  2778.         mode = GET_MODE (SUBREG_REG (reload_in[j]));
  2779.  
  2780.       /* If reloading from memory, see if there is a register
  2781.          that already holds the same value.  If so, reload from there.
  2782.          We can pass 0 as the reload_reg_p argument because
  2783.          any other reload has either already been emitted,
  2784.          in which case find_equiv_reg will see the reload-insn,
  2785.          or has yet to be emitted, in which case it doesn't matter
  2786.          because we will use this equiv reg right away.  */
  2787.  
  2788.       if (GET_CODE (old) == MEM
  2789.           || (GET_CODE (old) == REG
  2790.           && REGNO (old) >= FIRST_PSEUDO_REGISTER
  2791.           && reg_renumber[REGNO (old)] < 0))
  2792.         oldequiv = find_equiv_reg (old, insn, GENERAL_REGS,
  2793.                        -1, 0, 0, mode);
  2794.  
  2795.       /* If OLDEQUIV is a spill register, don't use it for this
  2796.          if any other reload needs it at an earlier stage of this insn
  2797.          or at this stage.  */       
  2798.       if (oldequiv && GET_CODE (oldequiv) == REG
  2799.           && spill_reg_order[REGNO (oldequiv)] >= 0
  2800.           && (! reload_reg_free_p (REGNO (oldequiv), reload_when_needed[j])
  2801.           || ! reload_reg_free_before_p (REGNO (oldequiv),
  2802.                          reload_when_needed[j])))
  2803.         oldequiv = 0;
  2804.  
  2805.       /* If OLDEQUIV is not a spill register,
  2806.          don't use it if any other reload wants it.  */
  2807.       if (oldequiv && GET_CODE (oldequiv) == REG
  2808.           && spill_reg_order[REGNO (oldequiv)] < 0)
  2809.         {
  2810.           int k;
  2811.           for (k = 0; k < n_reloads; k++)
  2812.         if (reload_reg_rtx[k] != 0 && k != j
  2813.             && reg_overlap_mentioned_p (reload_reg_rtx[k], oldequiv))
  2814.           {
  2815.             oldequiv = 0;
  2816.             break;
  2817.           }
  2818.         }
  2819.  
  2820.       if (oldequiv == 0)
  2821.         oldequiv = old;
  2822.  
  2823.       /* Encapsulate both RELOADREG and OLDEQUIV into that mode,
  2824.          then load RELOADREG from OLDEQUIV.  */
  2825.  
  2826. #if defined( DSP56000 )
  2827.       /* the problem here is that the subregs created here have no real
  2828.          meaning. they are just created to mask the mode of the reloadreg.
  2829.          in final.c, alter_subreg does a special trick to allow subregs
  2830.          on the lsw of a DImode in a or b to access the correct part of
  2831.          the register. the subregs created here confuse it. (at least they
  2832.          used to!). */
  2833.       if (GET_MODE (reloadreg) != mode)
  2834.       {
  2835.           reloadreg = gen_rtx (SUBREG, mode, reloadreg, 0);
  2836.           RELOAD_SUBREG_P ( reloadreg ) = 1;
  2837.       }
  2838.       while (GET_CODE (oldequiv) == SUBREG && GET_MODE (oldequiv) != mode)
  2839.         oldequiv = SUBREG_REG (oldequiv);
  2840.       if (GET_MODE (oldequiv) != VOIDmode
  2841.           && mode != GET_MODE (oldequiv))
  2842.       {
  2843.           oldequiv = gen_rtx (SUBREG, mode, oldequiv, 0);
  2844.           RELOAD_SUBREG_P ( oldequiv ) = 1;
  2845.       }
  2846. #else
  2847.       if (GET_MODE (reloadreg) != mode)
  2848.         reloadreg = gen_rtx (SUBREG, mode, reloadreg, 0);
  2849.       while (GET_CODE (oldequiv) == SUBREG && GET_MODE (oldequiv) != mode)
  2850.         oldequiv = SUBREG_REG (oldequiv);
  2851.       if (GET_MODE (oldequiv) != VOIDmode
  2852.           && mode != GET_MODE (oldequiv))
  2853.         oldequiv = gen_rtx (SUBREG, mode, oldequiv, 0);
  2854. #endif
  2855.  
  2856.       /* Decide where to put reload insn for this reload.  */
  2857.       switch (reload_when_needed[j])
  2858.         {
  2859.         case RELOAD_OTHER:
  2860.           where = first_operand_address_reload_insn;
  2861.           break;
  2862.         case RELOAD_FOR_INPUT_RELOAD_ADDRESS:
  2863.           where = first_other_reload_insn;
  2864.           break;
  2865.         case RELOAD_FOR_OUTPUT_RELOAD_ADDRESS:
  2866.           where = first_output_reload_insn;
  2867.           break;
  2868.         case RELOAD_FOR_OPERAND_ADDRESS:
  2869.           where = insn;
  2870.         }
  2871.  
  2872.       special = 0;
  2873.  
  2874.       /* Auto-increment addresses must be reloaded in a special way.  */
  2875.       if (GET_CODE (oldequiv) == POST_INC
  2876.           || GET_CODE (oldequiv) == POST_DEC
  2877.           || GET_CODE (oldequiv) == PRE_INC
  2878.           || GET_CODE (oldequiv) == PRE_DEC)
  2879.         {
  2880.           /* Prevent normal processing of this reload.  */
  2881.           special = 1;
  2882.           /* Output a special code sequence for this case.  */
  2883.           this_reload_insn
  2884.         = inc_for_reload (reloadreg, oldequiv, reload_inc[j], where);
  2885.         }
  2886.  
  2887.       /* If we are reloading a pseudo-register that was set by the previous
  2888.          insn, see if we can get rid of that pseudo-register entirely
  2889.          by redirecting the previous insn into our reload register.  */
  2890.  
  2891.       else if (optimize && GET_CODE (old) == REG
  2892.            && REGNO (old) >= FIRST_PSEUDO_REGISTER
  2893.            && dead_or_set_p (insn, old)
  2894.            /* This is unsafe if some other reload
  2895.               uses the same reg first.  */
  2896.            && (reload_when_needed[j] == RELOAD_OTHER
  2897.                || reload_when_needed[j] == RELOAD_FOR_INPUT_RELOAD_ADDRESS))
  2898.         {
  2899.           rtx temp = PREV_INSN (insn);
  2900.           while (temp && GET_CODE (temp) == NOTE)
  2901.         temp = PREV_INSN (temp);
  2902.           if (temp
  2903.           && GET_CODE (temp) == INSN
  2904.           && GET_CODE (PATTERN (temp)) == SET
  2905.           && SET_DEST (PATTERN (temp)) == old
  2906.           /* Make sure we can access insn_operand_constraint.  */
  2907.           && asm_noperands (PATTERN (temp)) < 0
  2908.           /* This is unsafe if prev insn rejects our reload reg.  */
  2909.           && constraint_accepts_reg_p (insn_operand_constraint[recog_memoized (temp)][0],
  2910.                            reloadreg)
  2911.           /* This is unsafe if operand occurs more than once in current
  2912.              insn.  Perhaps some occurrences aren't reloaded.  */
  2913.           && count_occurrences (PATTERN (insn), old) == 1
  2914.           /* Don't risk splitting a matching pair of operands.  */
  2915.           && ! reg_mentioned_p (old, SET_SRC (PATTERN (temp))))
  2916.         {
  2917.           /* Store into the reload register instead of the pseudo.  */
  2918.           SET_DEST (PATTERN (temp)) = reloadreg;
  2919.           /* If these are the only uses of the pseudo reg,
  2920.              pretend for GDB it lives in the reload reg we used.  */
  2921.           if (reg_n_deaths[REGNO (old)] == 1
  2922.               && reg_n_sets[REGNO (old)] == 1)
  2923.             {
  2924.               reg_renumber[REGNO (old)] = REGNO (reload_reg_rtx[j]);
  2925.               alter_reg (REGNO (old), -1);
  2926.             }
  2927.           special = 1;
  2928.         }
  2929.         }
  2930.  
  2931.       /* We can't do that, so output an insn to load RELOADREG.
  2932.          Keep them in the following order:
  2933.          all reloads for input reload addresses,
  2934.          all reloads for ordinary input operands,
  2935.          all reloads for addresses of non-reloaded operands,
  2936.          the insn being reloaded,
  2937.          all reloads for addresses of output reloads,
  2938.          the output reloads.  */
  2939.       if (! special)
  2940.         this_reload_insn = gen_input_reload (reloadreg, oldequiv, where);
  2941.  
  2942.       /* Update where to put other reload insns.  */
  2943.       if (this_reload_insn)
  2944.         switch (reload_when_needed[j])
  2945.           {
  2946.           case RELOAD_OTHER:
  2947.         if (first_other_reload_insn == first_operand_address_reload_insn)
  2948.           first_other_reload_insn = this_reload_insn;
  2949.         break;
  2950.           case RELOAD_FOR_OPERAND_ADDRESS:
  2951.         if (first_operand_address_reload_insn == insn)
  2952.           first_operand_address_reload_insn = this_reload_insn;
  2953.         if (first_other_reload_insn == insn)
  2954.           first_other_reload_insn = this_reload_insn;
  2955.           }
  2956.  
  2957.       /* reload_inc[j] was formerly processed here.  */
  2958.     }
  2959.  
  2960.       /* Add a note saying the input reload reg
  2961.      dies in this insn, if anyone cares.  */
  2962. #ifdef PRESERVE_DEATH_INFO_REGNO_P
  2963.       if (old != 0
  2964.       && reload_reg_rtx[j] != old
  2965.       && reload_reg_rtx[j] != 0
  2966.       && reload_out[j] == 0
  2967.       && PRESERVE_DEATH_INFO_REGNO_P (REGNO (reload_reg_rtx[j])))
  2968.     {
  2969.       register rtx reloadreg = reload_reg_rtx[j];
  2970.  
  2971.       /* The code below is incorrect except for RELOAD_OTHER.  */
  2972.       if (reload_when_needed[j] != RELOAD_OTHER)
  2973.         abort ();
  2974.  
  2975.       /* Add a death note to this insn, for an input reload.  */
  2976.  
  2977.       if (! dead_or_set_p (insn, reloadreg))
  2978.         REG_NOTES (insn)
  2979.           = gen_rtx (EXPR_LIST, REG_DEAD,
  2980.              reloadreg, REG_NOTES (insn));
  2981.     }
  2982. #endif
  2983.  
  2984.       /* ??? The following code is inadequate.
  2985.      It handles regs inherited via reg_last_reloaded_contents
  2986.      but not those inherited via find_equiv_reg.
  2987.      Note that we can't expect spill_reg_store to contain anything
  2988.      useful in the case of find_equiv_reg.  */
  2989.  
  2990. #ifdef PRESERVE_DEATH_INFO_REGNO_P
  2991.       /* For some registers it is important to keep the REG_DEATH
  2992.      notes accurate for the final pass.
  2993.      If we are inheriting an old output-reload out of such a reg,
  2994.      the reg no longer dies there, so remove the death note.  */
  2995.  
  2996.       if (reload_reg_rtx[j] != 0
  2997.       && PRESERVE_DEATH_INFO_REGNO_P (REGNO (reload_reg_rtx[j]))
  2998.       && reload_inherited[j] && reload_spill_index[j] >= 0
  2999.       && GET_CODE (reload_in[j]) == REG
  3000.       && spill_reg_store[reload_spill_index[j]] != 0
  3001.       && regno_dead_p (REGNO (reload_reg_rtx[j]),
  3002.                spill_reg_store[reload_spill_index[j]]))
  3003.     {
  3004.       remove_death (REGNO (reload_reg_rtx[j]),
  3005.             spill_reg_store[reload_spill_index[j]]);
  3006.     }
  3007. #endif
  3008.  
  3009.       /* If we are reloading a register that was recently stored in with an
  3010.      output-reload, see if we can prove there was
  3011.      actually no need to store the old value in it.  */
  3012.  
  3013.       if (optimize && reload_inherited[j] && reload_spill_index[j] >= 0
  3014.       /* This is unsafe if some other reload uses the same reg first.  */
  3015.       && (reload_when_needed[j] == RELOAD_OTHER
  3016.           || reload_when_needed[j] == RELOAD_FOR_INPUT_RELOAD_ADDRESS)
  3017.       && GET_CODE (reload_in[j]) == REG
  3018.       && REGNO (reload_in[j]) >= FIRST_PSEUDO_REGISTER
  3019.       && spill_reg_store[reload_spill_index[j]] != 0
  3020.       && dead_or_set_p (insn, reload_in[j])
  3021.       /* This is unsafe if operand occurs more than once in current
  3022.          insn.  Perhaps some occurrences weren't reloaded.  */
  3023.       && count_occurrences (PATTERN (insn), reload_in[j]) == 1)
  3024.     delete_output_reload (insn, j, reload_spill_index[j]);
  3025.  
  3026.       /* Input-reloading is done.  Now do output-reloading,
  3027.      storing the value from the reload-register after the main insn
  3028.      if reload_out[j] is nonzero.  */
  3029.       old = reload_out[j];
  3030.       if (old != 0
  3031.       && reload_reg_rtx[j] != old
  3032.       && reload_reg_rtx[j] != 0
  3033.       /* An output operand that dies right away
  3034.          does need a reload reg, but need not
  3035.          be copied from it.  */
  3036.       && ! (GET_CODE (old) == REG
  3037.         && find_reg_note (insn, REG_DEAD, old)))
  3038.     {
  3039.       register rtx reloadreg = reload_reg_rtx[j];
  3040.       enum machine_mode mode;
  3041.  
  3042. #if 0
  3043.       /* Strip off of OLD any size-increasing SUBREGs such as
  3044.          (SUBREG:SI foo:QI 0).  */
  3045.  
  3046.       while (GET_CODE (old) == SUBREG && SUBREG_WORD (old) == 0
  3047.          && (GET_MODE_SIZE (GET_MODE (old))
  3048.              > GET_MODE_SIZE (GET_MODE (SUBREG_REG (old)))))
  3049.         old = SUBREG_REG (old);
  3050. #endif
  3051.  
  3052.       /* Determine the mode to reload in.
  3053.          See comments above (for input reloading).  */
  3054.  
  3055.       mode = GET_MODE (old);
  3056.       if (mode == VOIDmode)
  3057.         abort ();        /* Should never happen for an output.  */
  3058. #if 0
  3059.         mode = reload_inmode[j];
  3060. #endif
  3061.       if (reload_strict_low[j])
  3062.         mode = GET_MODE (SUBREG_REG (reload_out[j]));
  3063.  
  3064.       /* Encapsulate both RELOADREG and OLD into that mode,
  3065.          then load RELOADREG from OLD.  */
  3066. #if defined( DSP56000 )
  3067.       /* see above comment on SUBREGS, reload, and accumulators. */
  3068.       if (GET_MODE (reloadreg) != mode)
  3069.       {
  3070.           reloadreg = gen_rtx (SUBREG, mode, reloadreg, 0);
  3071.           RELOAD_SUBREG_P ( reloadreg ) = 1;
  3072.       }
  3073. #else
  3074.       if (GET_MODE (reloadreg) != mode)
  3075.         reloadreg = gen_rtx (SUBREG, mode, reloadreg, 0);
  3076. #endif
  3077.       /* If OLD is a subreg, then strip it, since the subreg will
  3078.          be altered by this very reload (if it's a strict_low_part).  */
  3079.       while (GET_CODE (old) == SUBREG && GET_MODE (old) != mode)
  3080.         old = SUBREG_REG (old);
  3081.       if (GET_MODE (old) != VOIDmode
  3082.           && mode != GET_MODE (old))
  3083.         old = gen_rtx (SUBREG, mode, old, 0);
  3084.       /* Output the reload insn.  */
  3085.       store_insn = emit_insn_before (gen_move_insn (old, reloadreg),
  3086.                      first_output_reload_insn);
  3087.       first_output_reload_insn = store_insn;
  3088.       /* If this output reload doesn't come from a spill reg,
  3089.          clear any memory of reloaded copies of the pseudo reg.
  3090.          If this output reload comes from a spill reg,
  3091.          reg_has_output_reload will make this do nothing.  */
  3092.       note_stores (PATTERN (store_insn), forget_old_reloads_1);
  3093.  
  3094. #ifdef PRESERVE_DEATH_INFO_REGNO_P
  3095.       /* If final will look at death notes for this reg,
  3096.          put one on the output-reload insn.  */
  3097.       if (PRESERVE_DEATH_INFO_REGNO_P (REGNO (reloadreg)))
  3098.         REG_NOTES (store_insn)
  3099.         = gen_rtx (EXPR_LIST, REG_DEAD,
  3100.                reloadreg, REG_NOTES (store_insn));
  3101.  
  3102.       /* Move all death-notes from the insn being reloaded
  3103.          to the output reload, if they are for things used
  3104.          as inputs in this output reload.  */
  3105.       if (GET_CODE (old) != REG)
  3106.         {
  3107.           /* The note we will examine next.  */
  3108.           rtx reg_notes = REG_NOTES (insn);
  3109.           /* The place that pointed to this note.  */
  3110.           rtx *prev_reg_note = ®_NOTES (insn);
  3111.  
  3112.           while (reg_notes)
  3113.         {
  3114.           rtx next_reg_notes = XEXP (reg_notes, 1);
  3115.           if (REG_NOTE_KIND (reg_notes) == REG_DEAD
  3116.               && reg_mentioned_p (XEXP (reg_notes, 0), old))
  3117.             {
  3118.               *prev_reg_note = next_reg_notes;
  3119.               XEXP (reg_notes, 1) = REG_NOTES (store_insn);
  3120.               REG_NOTES (store_insn) = reg_notes;
  3121.             }
  3122.           else
  3123.             prev_reg_note = &XEXP (reg_notes, 1);
  3124.  
  3125.           reg_notes = next_reg_notes;
  3126.         }
  3127.         }
  3128. #endif
  3129.     }
  3130.       else store_insn = 0;
  3131.  
  3132.       if (reload_spill_index[j] >= 0)
  3133.     spill_reg_store[reload_spill_index[j]] = store_insn;
  3134.     }
  3135.  
  3136.   /* Move death notes from INSN to output-operand-address reload insns.  */
  3137. #ifdef PRESERVE_DEATH_INFO_REGNO_P
  3138.   {
  3139.     rtx insn1;
  3140.     /* Loop over those insns, last ones first.  */
  3141.     for (insn1 = PREV_INSN (first_output_reload_insn); insn1 != insn;
  3142.      insn1 = PREV_INSN (insn1))
  3143.       if (GET_CODE (insn1) == INSN && GET_CODE (PATTERN (insn1)) == SET)
  3144.     {
  3145.       rtx source = SET_SRC (PATTERN (insn1));
  3146.  
  3147.       /* The note we will examine next.  */
  3148.       rtx reg_notes = REG_NOTES (insn);
  3149.       /* The place that pointed to this note.  */
  3150.       rtx *prev_reg_note = ®_NOTES (insn);
  3151.  
  3152.       /* If the note is for something used in the source of this
  3153.          output address reload insn, move the note.  */
  3154.       while (reg_notes)
  3155.         {
  3156.           rtx next_reg_notes = XEXP (reg_notes, 1);
  3157.           if (REG_NOTE_KIND (reg_notes) == REG_DEAD
  3158.           && reg_mentioned_p (XEXP (reg_notes, 0), source))
  3159.         {
  3160.           *prev_reg_note = next_reg_notes;
  3161.           XEXP (reg_notes, 1) = REG_NOTES (insn1);
  3162.           REG_NOTES (insn1) = reg_notes;
  3163.         }
  3164.           else
  3165.         prev_reg_note = &XEXP (reg_notes, 1);
  3166.  
  3167.           reg_notes = next_reg_notes;
  3168.         }
  3169.     }
  3170.   }
  3171. #endif
  3172. }
  3173.  
  3174. /* Emit code before BEFORE_INSN to perform an input reload of IN to RELOADREG.
  3175.    Handle case of reloading a PLUS expression (currently only happens for
  3176.    stack slots with out-of-range offset).
  3177.  
  3178.    Returns last insn emitted.  */
  3179.  
  3180. static rtx
  3181. gen_input_reload (reloadreg, in, before_insn)
  3182.      rtx reloadreg;
  3183.      rtx in;
  3184.      rtx before_insn;
  3185. {
  3186. #if 0  /* Install this in version 1.37.  Avoid risk for now.  */
  3187.   if (GET_CODE (in) == PLUS)
  3188.     {
  3189.       /* Don't use gen_move_insn to make what is actually an add insn.  */
  3190.       emit_insn_before (gen_move_insn (reloadreg, XEXP (in, 0)), before_insn);
  3191.       emit_insn_before (gen_add2_insn (reloadreg, XEXP (in, 1)), before_insn);
  3192.     }
  3193.   else
  3194. #endif
  3195.     emit_insn_before (gen_move_insn (reloadreg, in), before_insn);
  3196.  
  3197.   return PREV_INSN (before_insn);
  3198. }
  3199.  
  3200. /* Delete a previously made output-reload
  3201.    whose result we now believe is not needed.
  3202.    First we double-check.
  3203.  
  3204.    INSN is the insn now being processed.
  3205.    J is the reload-number for this insn,
  3206.    and SPILL_INDEX is the index in spill_regs of the reload-reg
  3207.    being used for the reload.  */
  3208.  
  3209. static void
  3210. delete_output_reload (insn, j, spill_index)
  3211.      rtx insn;
  3212.      int j;
  3213.      int spill_index;
  3214. {
  3215.   register rtx i1;
  3216.  
  3217.   /* Get the raw pseudo-register referred to.  */
  3218.  
  3219.   rtx reg = reload_in[j];
  3220.   while (GET_CODE (reg) == SUBREG)
  3221.     reg = SUBREG_REG (reg);
  3222.  
  3223.   /* If the pseudo-reg we are reloading is no longer referenced
  3224.      anywhere between the store into it and here,
  3225.      and no jumps or labels intervene, then the value can get
  3226.      here through the reload reg alone.
  3227.      Otherwise, give up--return.  */
  3228.   for (i1 = NEXT_INSN (spill_reg_store[spill_index]);
  3229.        i1 != insn; i1 = NEXT_INSN (i1))
  3230.     {
  3231.       if (GET_CODE (i1) == CODE_LABEL || GET_CODE (i1) == JUMP_INSN)
  3232.     return;
  3233.       if ((GET_CODE (i1) == INSN || GET_CODE (i1) == CALL_INSN)
  3234.       && reg_mentioned_p (reg, PATTERN (i1)))
  3235.     return;
  3236.     }
  3237.  
  3238.   /* If this insn will store in the pseudo again,
  3239.      the previous store can be removed.  */
  3240.   if (reload_out[j] == reload_in[j])
  3241.     delete_insn (spill_reg_store[spill_index]);
  3242.  
  3243.   /* See if the pseudo reg has been completely replaced
  3244.      with reload regs.  If so, delete the store insn
  3245.      and forget we had a stack slot for the pseudo.  */
  3246.   else if (reg_n_deaths[REGNO (reg)] == 1
  3247.        && reg_basic_block[REGNO (reg)] >= 0
  3248.        && find_regno_note (insn, REG_DEAD, REGNO (reg)))
  3249.     {
  3250.       rtx i2;
  3251.  
  3252.       /* We know that it was used only between here
  3253.      and the beginning of the current basic block.
  3254.      (We also know that the last use before INSN was
  3255.      the output reload we are thinking of deleting, but never mind that.)
  3256.      Search that range; see if any ref remains.  */
  3257.       for (i2 = PREV_INSN (insn); i2; i2 = PREV_INSN (i2))
  3258.     {
  3259.       /* Uses which just store in the pseudo don't count,
  3260.          since if they are the only uses, they are dead.  */
  3261.       if (GET_CODE (i2) == INSN
  3262.           && GET_CODE (PATTERN (i2)) == SET
  3263.           && SET_DEST (PATTERN (i2)) == reg)
  3264.         continue;
  3265.       if (GET_CODE (i2) == CODE_LABEL
  3266.           || GET_CODE (i2) == JUMP_INSN)
  3267.         break;
  3268.       if ((GET_CODE (i2) == INSN || GET_CODE (i2) == CALL_INSN)
  3269.           && reg_mentioned_p (reg, PATTERN (i2)))
  3270.         /* Some other ref remains;
  3271.            we can't do anything.  */
  3272.         return;
  3273.     }
  3274.  
  3275.       /* Delete the now-dead stores into this pseudo.  */
  3276.       for (i2 = PREV_INSN (insn); i2; i2 = PREV_INSN (i2))
  3277.     {
  3278.       /* Uses which just store in the pseudo don't count,
  3279.          since if they are the only uses, they are dead.  */
  3280.       if (GET_CODE (i2) == INSN
  3281.           && GET_CODE (PATTERN (i2)) == SET
  3282.           && SET_DEST (PATTERN (i2)) == reg)
  3283.         delete_insn (i2);
  3284.       if (GET_CODE (i2) == CODE_LABEL
  3285.           || GET_CODE (i2) == JUMP_INSN)
  3286.         break;
  3287.     }
  3288.  
  3289.       /* For the debugging info,
  3290.      say the pseudo lives in this reload reg.  */
  3291.       reg_renumber[REGNO (reg)] = REGNO (reload_reg_rtx[j]);
  3292.       alter_reg (REGNO (reg), -1);
  3293.     }
  3294. }
  3295.  
  3296.  
  3297. /* Output reload-insns to reload VALUE into RELOADREG. 
  3298.    VALUE is a autoincrement or autodecrement RTX whose operand
  3299.    is a register or memory location;
  3300.    so reloading involves incrementing that location.
  3301.  
  3302.    INC_AMOUNT is the number to increment or decrement by (always positive).
  3303.    This cannot be deduced from VALUE.
  3304.  
  3305.    INSN is the insn before which the new insns should be emitted.
  3306.  
  3307.    The return value is the first of the insns emitted.  */
  3308.  
  3309. static rtx
  3310. inc_for_reload (reloadreg, value, inc_amount, insn)
  3311.      rtx reloadreg;
  3312.      rtx value;
  3313.      int inc_amount;
  3314.      rtx insn;
  3315. {
  3316.   /* REG or MEM to be copied and incremented.  */
  3317.   rtx incloc = XEXP (value, 0);
  3318.   /* Nonzero if increment after copying.  */
  3319.   int post = (GET_CODE (value) == POST_DEC || GET_CODE (value) == POST_INC);
  3320.  
  3321.   /* No hard register is equivalent to this register after
  3322.      inc/dec operation.  If REG_LAST_RELOAD_REG were non-zero,
  3323.      we could inc/dec that register as well (maybe even using it for
  3324.      the source), but I'm not sure it's worth worrying about.  */
  3325.   if (GET_CODE (incloc) == REG)
  3326.     reg_last_reload_reg[REGNO (incloc)] = 0;
  3327.  
  3328.   if (GET_CODE (value) == PRE_DEC || GET_CODE (value) == POST_DEC)
  3329.     inc_amount = - inc_amount;
  3330.  
  3331.   /* First handle preincrement, which is simpler.  */
  3332.   if (! post)
  3333.     {
  3334.       /* If incrementing a register, assume we can
  3335.      output an insn to increment it directly.  */
  3336.       if (GET_CODE (incloc) == REG &&
  3337.       (REGNO (incloc) < FIRST_PSEUDO_REGISTER
  3338.        || reg_renumber[REGNO (incloc)] >= 0))
  3339.     {
  3340.       rtx first_new
  3341.         = emit_insn_before (gen_add2_insn (incloc,
  3342.                            gen_rtx (CONST_INT, VOIDmode,
  3343.                             inc_amount)),
  3344.                 insn);
  3345.       emit_insn_before (gen_move_insn (reloadreg, incloc), insn);
  3346.       return first_new;
  3347.     }
  3348.       else
  3349.     /* Else we must not assume we can increment the location directly
  3350.        (even though on many target machines we can);
  3351.        copy it to the reload register, increment there, then save back.  */
  3352.     {
  3353.       rtx first_new
  3354.         = emit_insn_before (gen_move_insn (reloadreg, incloc), insn);
  3355.       emit_insn_before (gen_add2_insn (reloadreg,
  3356.                        gen_rtx (CONST_INT, VOIDmode,
  3357.                             inc_amount)),
  3358.                 insn);
  3359.       emit_insn_before (gen_move_insn (incloc, reloadreg), insn);
  3360.       return first_new;
  3361.     }
  3362.     }
  3363.   /* Postincrement.
  3364.      Because this might be a jump insn or a compare, and because RELOADREG
  3365.      may not be available after the insn in an input reload,
  3366.      we must do the incrementation before the insn being reloaded for.  */
  3367.   else
  3368.     {
  3369.       /* Copy the value, then increment it.  */
  3370.       rtx first_new
  3371.     = emit_insn_before (gen_move_insn (reloadreg, incloc), insn);
  3372.  
  3373.       /* If incrementing a register, assume we can
  3374.      output an insn to increment it directly.  */
  3375. #if ! defined( DSP56000 ) && ! defined( DSP96000 )
  3376.       if (GET_CODE (incloc) == REG &&
  3377.       (REGNO (incloc) < FIRST_PSEUDO_REGISTER
  3378.        || reg_renumber[REGNO (incloc)] >= 0))
  3379. #else
  3380.       /* GNU makes an invalid assumtion here: they assume that they
  3381.          can inc any hard reg which has the same mode as the reload
  3382.          reg. We need to check that we have an rx reg on the 56k or
  3383.          an rx, or dx.l reg on the 96k. otherwise we must inc the 
  3384.          reload reg, copy it, and dec it. */
  3385.  
  3386.       if (( REG == GET_CODE ( incloc )) &&
  3387.       ( FIRST_PSEUDO_REGISTER > REGNO ( incloc )) &&
  3388. #if defined( DSP56000 )
  3389.       ( ADDR_REGS == REGNO_REG_CLASS ( REGNO ( incloc )))
  3390. #else
  3391.       (( ADDR_REGS == REGNO_REG_CLASS ( REGNO ( incloc ))) ||
  3392.        ( LO_DATA_REGS == REGNO_REG_CLASS ( REGNO ( incloc ))))
  3393. #endif
  3394.       )
  3395. #endif
  3396.     {
  3397.       emit_insn_before (gen_add2_insn (incloc,
  3398.                        gen_rtx (CONST_INT, VOIDmode,
  3399.                             inc_amount)),
  3400.                 insn);
  3401.     }
  3402.       else
  3403.     /* Else we must not assume we can increment INCLOC
  3404.        (even though on many target machines we can);
  3405.        increment the copy in the reload register,
  3406.        save that back, then decrement the reload register
  3407.        so it has the original value.  */
  3408.     {
  3409.       emit_insn_before (gen_add2_insn (reloadreg,
  3410.                        gen_rtx (CONST_INT, VOIDmode,
  3411.                             inc_amount)),
  3412.                 insn);
  3413.       emit_insn_before (gen_move_insn (incloc, reloadreg), insn);
  3414.       emit_insn_before (gen_sub2_insn (reloadreg,
  3415.                        gen_rtx (CONST_INT, VOIDmode,
  3416.                             inc_amount)),
  3417.                 insn);
  3418.     }
  3419.       return first_new;
  3420.     }
  3421. }
  3422.  
  3423. /* Return 1 if we are certain that the constraint-string STRING allows
  3424.    the hard register REG.  Return 0 if we can't be sure of this.  */
  3425.  
  3426. static int
  3427. constraint_accepts_reg_p (string, reg)
  3428.      char *string;
  3429.      rtx reg;
  3430. {
  3431.   int value = 0;
  3432.   int regno = true_regnum (reg);
  3433.  
  3434.   /* We win if this register is a general register
  3435.      and each alternative accepts all general registers.  */
  3436.   if (! TEST_HARD_REG_BIT (reg_class_contents[(int) GENERAL_REGS], regno))
  3437.     return 0;
  3438.  
  3439.   /* Initialize for first alternative.  */
  3440.   value = 0;
  3441.   /* Check that each alternative contains `g' or `r'.  */
  3442.   while (1)
  3443.     switch (*string++)
  3444.       {
  3445.       case 0:
  3446.     /* If an alternative lacks `g' or `r', we lose.  */
  3447.     return value;
  3448.       case ',':
  3449.     /* If an alternative lacks `g' or `r', we lose.  */
  3450.     if (value == 0)
  3451.       return 0;
  3452.     /* Initialize for next alternative.  */
  3453.     value = 0;
  3454.     break;
  3455.       case 'g':
  3456.       case 'r':
  3457.     value = 1;
  3458.       }
  3459. }
  3460.  
  3461. /* Return the number of places FIND appears within X.  */
  3462.  
  3463. static int
  3464. count_occurrences (x, find)
  3465.      register rtx x, find;
  3466. {
  3467.   register int i, j;
  3468.   register enum rtx_code code;
  3469.   register char *format_ptr;
  3470.   int count;
  3471.  
  3472.   if (x == find)
  3473.     return 1;
  3474.   if (x == 0)
  3475.     return 0;
  3476.  
  3477.   code = GET_CODE (x);
  3478.  
  3479.   switch (code)
  3480.     {
  3481.     case REG:
  3482.     case QUEUED:
  3483.     case CONST_INT:
  3484.     case CONST_DOUBLE:
  3485.     case SYMBOL_REF:
  3486.     case CODE_LABEL:
  3487.     case PC:
  3488.     case CC0:
  3489.       return 0;
  3490.     }
  3491.  
  3492.   format_ptr = GET_RTX_FORMAT (code);
  3493.   count = 0;
  3494.  
  3495.   for (i = 0; i < GET_RTX_LENGTH (code); i++)
  3496.     {
  3497.       switch (*format_ptr++)
  3498.     {
  3499.     case 'e':
  3500.       count += count_occurrences (XEXP (x, i), find);
  3501.       break;
  3502.  
  3503.     case 'E':
  3504.       if (XVEC (x, i) != NULL)
  3505.         {
  3506.           for (j = 0; j < XVECLEN (x, i); j++)
  3507.         count += count_occurrences (XVECEXP (x, i, j), find);
  3508.         }
  3509.       break;
  3510.     }
  3511.     }
  3512.   return count;
  3513. }
  3514.